diff --git a/ProfileStore.luau b/ProfileStore.luau index 5b196af..a2c3d87 100644 --- a/ProfileStore.luau +++ b/ProfileStore.luau @@ -1001,10 +1001,10 @@ export type VersionQuery = { type ProfileStoreStandard = { Name: string, - StartSessionAsync: (self: any, profile_key: string, params: {Steal: boolean?}) -> (Profile?), + StartSessionAsync: (self: any, profile_key: string, params: {Cancel: (() -> boolean?)?, Steal: boolean?}?) -> (Profile?), MessageAsync: (self: any, profile_key: string, message: JSONAcceptable) -> (boolean), GetAsync: (self: any, profile_key: string, version: string?) -> (Profile?), - VersionQuery: (self: any, profile_key: string, sort_direction: Enum.SortDirection?, min_date: DateTime | number | nil, max_date: DateTime | number | nil) -> (VersionQuery), + VersionQuery: (self: any, profile_key: string, sort_direction: Enum.SortDirection?, min_date: (DateTime | number)?, max_date: (DateTime | number)?) -> (VersionQuery), RemoveAsync: (self: any, profile_key: string) -> (boolean), }