Skip to content
module@warp-drive/utilities

Interface DeleteRecordUrlOptions

Defined in: index.ts:358

buildBaseURL options for a deleteRecord request.

Properties

host?

ts
optional host?: string;

Defined in: index.ts:383

Overrides the globally configured host for this call only.


identifier

ts
identifier: object;

Defined in: index.ts:366

The type and id of the record being deleted.

id

ts
id: string;

The resource id.

type

ts
type: string;

The resource type.


namespace?

ts
optional namespace?: string;

Defined in: index.ts:387

Overrides the globally configured namespace for this call only.


op

ts
op: "deleteRecord";

Defined in: index.ts:362

The request operation this URL is for.


resourcePath?

ts
optional resourcePath?: string;

Defined in: index.ts:379

The path segment for the resource, defaults to identifier.type if not provided.

Released under the MIT License.