/** * **List** · `BETA` * * Returns a list of entries from an ordered data store. * * **Scopes:** `universe.ordered-data-store.scope.entry:read` * * @param universeId The identifier of the experience with ordered data stores that you want to access. You can find your experience's universe ID on Creator Hub. * @param orderedDataStore The name of the target ordered data store. * @param scope The name of the data store scope. See [Scopes](/cloud/guides/data-stores/request-handling.md#scopes). * @param max_page_size The maximum number of entries to return. The service may return fewer than this value. The default value is `10`. The maximum value is `100`, and any input above 100 is coerced to `100`. * @param page_token A page token received from a previous `List` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `List` must match the call providing the page token. * @param order_by The enumeration direction. The order by default is ascending. Input a `desc` suffix for descending. * @param filter The range of qualifying values of entries to return. See [Filters](/cloud/guides/data-stores/request-handling.md#filters). * @see GET https://apis.roblox.com/cloud/v2/universes/{universe_id}/ordered-data-stores/{ordered_data_store_id}/scopes/{scope_id}/entries * @deprecated Prefer the v2 alternative(s) listed above. */ export declare const getUniversesUniverseIdOrderedDataStoresOrderedDataStoreScopesScopeEntries: import("../..").EndpointGeneric<{ universeId: string; scope: string; orderedDataStore: string; filter?: string | undefined; max_page_size?: number | undefined; page_token?: string | undefined; order_by?: string | undefined; }, { entries: { path: string; id: string; value: number; }[]; nextPageToken: string; }, undefined>; /** * **Create** · `BETA` * * Creates a new entry with the content value provided. * * **Scopes:** `universe.ordered-data-store.scope.entry:write` * * @param body * @param universeId The identifier of the experience with ordered data stores that you want to access. You can find your experience's universe ID on Creator Hub. * @param orderedDataStore The name of the ordered data store. * @param scope The name of the data store scope. See [Scopes](/cloud/guides/data-stores/request-handling.md#scopes). * @param id The name of the entry. * @see POST https://apis.roblox.com/cloud/v2/universes/{universe_id}/ordered-data-stores/{ordered_data_store_id}/scopes/{scope_id}/entries * @deprecated Prefer the v2 alternative(s) listed above. */ export declare const postUniversesUniverseIdOrderedDataStoresOrderedDataStoreScopesScopeEntries: import("../..").EndpointGeneric<{ id: string; universeId: string; scope: string; orderedDataStore: string; }, { path: string; id: string; value: number; }, { value: number; }>; /** * **Get** · `BETA` * * Gets and returns the specified entry. * * **Scopes:** `universe.ordered-data-store.scope.entry:read` * * @param universeId The identifier of the experience with ordered data stores that you want to access. You can find your experience's universe ID on Creator Hub. * @param orderedDataStore The name of the ordered data store. * @param scope The name of the data store scope. See [Scopes](/cloud/guides/data-stores/request-handling.md#scopes). * @param entry The entry ID. * @see GET https://apis.roblox.com/cloud/v2/universes/{universe_id}/ordered-data-stores/{ordered_data_store_id}/scopes/{scope_id}/entries/{entry_id} * @deprecated Prefer the v2 alternative(s) listed above. */ export declare const getUniversesUniverseIdOrderedDataStoresOrderedDataStoreScopesScopeEntriesEntry: import("../..").EndpointGeneric<{ universeId: string; scope: string; orderedDataStore: string; entry: string; }, { path: string; id: string; value: number; }, undefined>; /** * **Delete** · `BETA` * * Deletes the specified entry. Unlike standard data stores, which mark entries for deletion, ordered data store entries are deleted immediately. * * **Scopes:** `universe.ordered-data-store.scope.entry:write` * * @param universeId The identifier of the experience with ordered data stores that you want to access. You can find your experience's universe ID on Creator Hub. * @param orderedDataStore The name of the ordered data store. * @param scope The name of the data store scope. See [Scopes](/cloud/guides/data-stores/request-handling.md#scopes). * @param entry The entry ID. * @see DELETE https://apis.roblox.com/cloud/v2/universes/{universe_id}/ordered-data-stores/{ordered_data_store_id}/scopes/{scope_id}/entries/{entry_id} * @deprecated Prefer the v2 alternative(s) listed above. */ export declare const deleteUniversesUniverseIdOrderedDataStoresOrderedDataStoreScopesScopeEntriesEntry: import("../..").EndpointGeneric<{ universeId: string; scope: string; orderedDataStore: string; entry: string; }, void, undefined>; /** * **Update** · `BETA` * * Updates an entry value and returns the updated entry. * * **Scopes:** `universe.ordered-data-store.scope.entry:write` * * @param body * @param universeId The identifier of the experience with ordered data stores that you want to access. You can find your experience's universe ID on Creator Hub. * @param orderedDataStore The name of the ordered data store. * @param scope The name of the data store scope. See [Scopes](/cloud/guides/data-stores/request-handling.md#scopes). * @param entry The entry ID. * @param allow_missing The flag to allow the creation of an entry if the entry doesn't exist. See [Allow missing flags](/cloud/guides/data-stores/request-handling.md.md#allow-missing-flags). * @see PATCH https://apis.roblox.com/cloud/v2/universes/{universe_id}/ordered-data-stores/{ordered_data_store_id}/scopes/{scope_id}/entries/{entry_id} * @deprecated Prefer the v2 alternative(s) listed above. */ export declare const patchUniversesUniverseIdOrderedDataStoresOrderedDataStoreScopesScopeEntriesEntry: import("../..").EndpointGeneric<{ universeId: string; scope: string; orderedDataStore: string; entry: string; allow_missing?: boolean | undefined; }, { path: string; id: string; value: number; }, { value?: number | undefined; }>; /** * **Increment** · `BETA` * * Increments the value of the key by the provided amount and returns the updated entry. Known issue: Entry values can increment past the valid range and this may persist in the backend. Returned values will clamp to the valid range. * * **Scopes:** `universe.ordered-data-store.scope.entry:write` * * @param body * @param universeId The identifier of the experience with ordered data stores that you want to access. You can find your experience's universe ID on Creator Hub. * @param orderedDataStore The name of the ordered data store. * @param scope The name of the data store scope. See [Scopes](/cloud/guides/data-stores/request-handling.md#scopes). * @param entry The entry ID. * @see POST https://apis.roblox.com/cloud/v2/universes/{universe_id}/ordered-data-stores/{ordered_data_store_id}/scopes/{scope_id}/entries/{entry_id}:increment * @deprecated Prefer the v2 alternative(s) listed above. */ export declare const postUniversesUniverseIdOrderedDataStoresOrderedDataStoreScopesScopeEntriesEntryIncrement: import("../..").EndpointGeneric<{ universeId: string; scope: string; orderedDataStore: string; entry: string; }, { path: string; id: string; value: number; }, { amount: number; }>;