From 0245634a3d17671e108743063ee18028eeb464ec Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 6 Dec 2023 07:16:17 +0000 Subject: [PATCH] Update generated files [skip ci] --- include/generated/None.d.ts | 50 +++++++++++++++++++++++++++++++++++- include/generated/enums.d.ts | 21 +++++++++++++++ 2 files changed, 70 insertions(+), 1 deletion(-) diff --git a/include/generated/None.d.ts b/include/generated/None.d.ts index 4307053c8..ab2c034a9 100644 --- a/include/generated/None.d.ts +++ b/include/generated/None.d.ts @@ -49,6 +49,7 @@ interface Services { ExperienceAuthService: ExperienceAuthService; ExperienceNotificationService: ExperienceNotificationService; ExperienceService: ExperienceService; + ExperienceStateCaptureService: ExperienceStateCaptureService; FaceAnimatorService: FaceAnimatorService; FacialAnimationRecordingService: FacialAnimationRecordingService; FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2; @@ -92,6 +93,7 @@ interface Services { PhysicsService: PhysicsService; PlacesService: PlacesService; PlaceStatsService: PlaceStatsService; + PlatformCloudStorageService: PlatformCloudStorageService; PlatformFriendsService: PlatformFriendsService; Players: Players; PlayerViewService: PlayerViewService; @@ -547,6 +549,7 @@ interface Instances extends Services, CreatableInstances, AbstractInstances { MaterialGenerationSession: MaterialGenerationSession; MaterialImportData: MaterialImportData; MemoryStoreHashMap: MemoryStoreHashMap; + MemoryStoreHashMapPages: MemoryStoreHashMapPages; MemoryStoreQueue: MemoryStoreQueue; MemoryStoreSortedMap: MemoryStoreSortedMap; MeshImportData: MeshImportData; @@ -6631,7 +6634,11 @@ interface CaptureService extends Instance { * @deprecated */ readonly _nominal_CaptureService: unique symbol; - PromptShareCapture(this: CaptureService, contentId: string, launchData: object, onAcceptedCallback: Callback, onDeniedCallback: Callback): void; + PromptSaveCapturesToGallery(this: CaptureService, contentIds: Array, resultCallback: Callback): void; + PromptShareCapture(this: CaptureService, contentId: string, launchData: string, onAcceptedCallback: Callback, onDeniedCallback: Callback): void; + readonly CaptureBegan: RBXScriptSignal<() => void>; + readonly CaptureEnded: RBXScriptSignal<() => void>; + readonly CaptureSaved: RBXScriptSignal<(captureInfo: object) => void>; readonly UserCaptureSaved: RBXScriptSignal<(captureContentId: string) => void>; } @@ -10628,6 +10635,17 @@ interface ExperienceService extends Instance { readonly _nominal_ExperienceService: unique symbol; } +interface ExperienceStateCaptureService extends Instance { + /** + * **DO NOT USE!** + * + * This field exists to force TypeScript to recognize this as a nominal type + * @hidden + * @deprecated + */ + readonly _nominal_ExperienceStateCaptureService: unique symbol; +} + /** An Explosion applies force to `BaseParts` within the explosion's [Explosion.BlastRadius](https://developer.roblox.com/en-us/api-reference/property/Explosion/BlastRadius). This force breaks joints between parts and kills [Humanoid](https://developer.roblox.com/en-us/api-reference/class/Humanoid) characters not protected by a [ForceField](https://developer.roblox.com/en-us/api-reference/class/ForceField). * * If an explosion is instanced whilst the game is running, it will destroy itself shortly afterwards meaning they do not need to be cleaned up using the [Debris](https://developer.roblox.com/en-us/api-reference/class/Debris) service. @@ -22654,6 +22672,10 @@ interface MemoryStoreHashMap extends Instance { * Tags: Yields */ GetAsync(this: MemoryStoreHashMap, key: string): unknown; + /** + * Tags: Yields + */ + ListItemsAsync(this: MemoryStoreHashMap, count: number): MemoryStoreHashMapPages; /** * Tags: Yields */ @@ -26818,6 +26840,17 @@ interface EmotesPages extends InventoryPages { readonly _nominal_EmotesPages: unique symbol; } +interface MemoryStoreHashMapPages extends Pages { + /** + * **DO NOT USE!** + * + * This field exists to force TypeScript to recognize this as a nominal type + * @hidden + * @deprecated + */ + readonly _nominal_MemoryStoreHashMapPages: unique symbol; +} + interface OutfitPages extends Pages< ReadonlyArray<{ @@ -27586,6 +27619,17 @@ interface PlacesService extends Instance { readonly _nominal_PlacesService: unique symbol; } +interface PlatformCloudStorageService extends Instance { + /** + * **DO NOT USE!** + * + * This field exists to force TypeScript to recognize this as a nominal type + * @hidden + * @deprecated + */ + readonly _nominal_PlatformCloudStorageService: unique symbol; +} + interface PlatformFriendsService extends Instance { /** * **DO NOT USE!** @@ -30203,6 +30247,8 @@ interface ScreenshotHud extends Instance { CloseButtonPosition: UDim2; CloseWhenScreenshotTaken: boolean; ExperienceNameOverlayEnabled: boolean; + HideCoreGuiForCaptures: boolean; + HidePlayerGuiForCaptures: boolean; OverlayFont: Enum.Font; UsernameOverlayEnabled: boolean; Visible: boolean; @@ -36670,6 +36716,7 @@ interface UserInputService extends Instance { * * [VRService](https://developer.roblox.com/en-us/api-reference/class/VRService), a service used to implement VR support * * As this event only fires locally, it can only be used in a [LocalScript](https://developer.roblox.com/en-us/api-reference/class/LocalScript). + * @deprecated */ GetUserCFrame(this: UserInputService, type: CastsToEnum): CFrame; /** @@ -37427,6 +37474,7 @@ interface UserInputService extends Instance { * * [VRService](https://developer.roblox.com/en-us/api-reference/class/VRService), used to implement support, including an identical event `VRService/UserHeadCFrameChanged` * * [Camera.HeadLocked](https://developer.roblox.com/en-us/api-reference/property/Camera/HeadLocked), when this property is _true_ the [Camera](https://developer.roblox.com/en-us/api-reference/class/Camera) will automatically track the head motion of a player using a VR device * * [Camera:GetRenderCFrame](https://developer.roblox.com/en-us/api-reference/function/Camera/GetRenderCFrame), a function which retrieves the [CFrame](https://developer.roblox.com/en-us/api-reference/datatype/CFrame) the [Camera](https://developer.roblox.com/en-us/api-reference/class/Camera) is being orientated at, including the impact of VR devices + * @deprecated */ readonly UserCFrameChanged: RBXScriptSignal<(type: Enum.UserCFrame, value: CFrame) => void>; /** diff --git a/include/generated/enums.d.ts b/include/generated/enums.d.ts index f89ba060d..4274dd21e 100644 --- a/include/generated/enums.d.ts +++ b/include/generated/enums.d.ts @@ -8105,6 +8105,27 @@ declare namespace Enum { } export type HttpCachePolicy = HttpCachePolicy.None | HttpCachePolicy.Full | HttpCachePolicy.DataOnly | HttpCachePolicy.Default | HttpCachePolicy.InternalRedirectRefresh; + export namespace HttpCompression { + export interface None extends globalThis.EnumItem { + Name: "None"; + Value: 0; + EnumType: typeof globalThis.Enum.HttpCompression; + } + + export const None: None; + + export interface Gzip extends globalThis.EnumItem { + Name: "Gzip"; + Value: 1; + EnumType: typeof globalThis.Enum.HttpCompression; + } + + export const Gzip: Gzip; + + export function GetEnumItems(this: globalThis.Enum): Array; + } + export type HttpCompression = HttpCompression.None | HttpCompression.Gzip; + export namespace HttpContentType { export interface ApplicationJson extends globalThis.EnumItem { Name: "ApplicationJson";