Skip to content

Commit

Permalink
added link to dev issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Jan 17, 2023
1 parent 7695107 commit bf26260
Show file tree
Hide file tree
Showing 19 changed files with 28 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { SimpleSavedObject } from '../simple_saved_object';
* Batch response for simple saved objects
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsBatchResponse<T = unknown> {
/** Array of simple saved objects */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type { SavedObjectsCreateOptions } from './create';
* Per-object parameters for bulk create operation
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsBulkCreateObject<T = unknown> extends SavedObjectsCreateOptions {
/** Create a SavedObject of this type. */
Expand All @@ -25,7 +25,7 @@ export interface SavedObjectsBulkCreateObject<T = unknown> extends SavedObjectsC
* Options for bulk create operation
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
* */
export interface SavedObjectsBulkCreateOptions {
/** If a document with the given `id` already exists, overwrite its contents (default=false). */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { SavedObjectError } from '@kbn/core-saved-objects-common';
* Options for bulk delete operation
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsBulkDeleteOptions {
/** Force deletion of any objects that exist in multiple namespaces (default=false) */
Expand All @@ -23,7 +23,7 @@ export interface SavedObjectsBulkDeleteOptions {
* Single item within the statuses array of the bulk delete response
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsBulkDeleteResponseItem {
/** saved object id */
Expand All @@ -40,7 +40,7 @@ export interface SavedObjectsBulkDeleteResponseItem {
* Return type of the Saved Objects `bulkDelete()` method.
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsBulkDeleteResponse {
/** array of statuses per object */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type { ResolvedSimpleSavedObject } from './resolve';
* Return type of the Saved Objects `bulkResolve()` method.
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsBulkResolveResponse<T = unknown> {
/** Array of {@link ResolvedSimpleSavedObject} that were resolved */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type { SavedObjectReference } from '@kbn/core-saved-objects-common';
* Per-object parameters for bulk update operation
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsBulkUpdateObject<T = unknown> {
/** Type of the saved object to update */
Expand All @@ -31,7 +31,7 @@ export interface SavedObjectsBulkUpdateObject<T = unknown> {
* Options for bulk update operation
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
* */
export interface SavedObjectsBulkUpdateOptions {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import type {
* Options for creating a saved object.
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsCreateOptions {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Options for deleting a saved object.
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsDeleteOptions {
/** Force deletion of an object that exists in multiple namespaces (default=false) */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type { SavedObjectsFindOptionsReference } from '@kbn/core-saved-objects-a
* Browser options for finding saved objects
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export type SavedObjectsFindOptions = Omit<
SavedObjectFindOptionsServer,
Expand All @@ -26,7 +26,7 @@ export type SavedObjectsFindOptions = Omit<
* Return type of the Saved Objects `find()` method.
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsFindResponse<T = unknown, A = unknown>
extends SavedObjectsBatchResponse<T> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import type { SimpleSavedObject } from '../simple_saved_object';
* with the {@link SavedObjectsClientContract}.
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface ResolvedSimpleSavedObject<T = unknown> {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type { SavedObjectReference } from '@kbn/core-saved-objects-common';
* Options for updating a saved object
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsUpdateOptions<Attributes = unknown> {
/** version of the saved object */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import type { SimpleSavedObject } from './simple_saved_object';
* HTTP API for interacting with Saved Objects.
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsClientContract {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type { SavedObject as SavedObjectType } from '@kbn/core-saved-objects-com
* but doesn't include any type-specific implementations.
*
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SimpleSavedObject<T = unknown> {
/** attributes of the object, templated */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const getObjectsToResolve = (queue: BatchResolveQueueEntry[]) => {
* HTTP API for interacting with Saved Objects.
*
* @internal
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export class SavedObjectsClient implements SavedObjectsClientContract {
private http: HttpSetup;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type { SavedObjectsStart } from '@kbn/core-saved-objects-browser';
import { SavedObjectsClient } from './saved_objects_client';

/**
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export class SavedObjectsService implements CoreService<void, SavedObjectsStart> {
public async setup() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import type {
* Core internal implementation of {@link SimpleSavedObject}
*
* @internal Should use the {@link SimpleSavedObject} interface instead
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export class SimpleSavedObjectImpl<T = unknown> implements SimpleSavedObject<T> {
public attributes: T;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const createMock = () => {
};

/**
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export const savedObjectsServiceMock = {
create: createMock,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const createSimpleSavedObjectMock = (
};

/**
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export const simpleSavedObjectMock = {
create: (client: SavedObjectsClientContract, savedObject: SavedObject) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type { SavedObjectsClientContract } from '@kbn/core-saved-objects-api-bro

/**
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export interface SavedObjectsStart {
/** {@link SavedObjectsClientContract} */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,30 +51,30 @@ export interface SavedObjectError {

/**
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export type SavedObjectAttributeSingle = serverTypes.SavedObjectAttributeSingle;

/**
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export type SavedObjectAttribute = serverTypes.SavedObjectAttribute;

/**
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export type SavedObjectAttributes = serverTypes.SavedObjectAttributes;

/**
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export type SavedObjectReference = serverTypes.SavedObjectReference;

/**
* @public
* @deprecated TODO: Replace with issue link
* @deprecated See https://github.com/elastic/dev/issues/2194
*/
export type SavedObject<T = unknown> = serverTypes.SavedObject<T>;

0 comments on commit bf26260

Please sign in to comment.