---
name: "createTempClear"
mode: "api"
versionRequirements:
  - { name: "@ray-js/lock-sdk", version: "1.0.0" }
title: "createTempClear - Generate clear password."
summary: "Generate clear password. Can support clearing all or a specific time-limited password."
---

## createTempClear

> [VERSION] @ray-js/lock-sdk >= 1.0.0

### Description

Create an offline password clear code

### Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `name` | `string` | No | Name |
| `unlockBindingId` | `string` | No | Single password binding ID (required when clearAll is false) |
| `clearAll` | `boolean` | Yes | Whether to clear all time-limited passwords |

### Return Value

Type: `Promise<TempPasswordResult>`

Offline clear code creation result

##### TempPasswordResult

| Property | Type | Description |
| --- | --- | --- |
| `type` | `"once" \| "limit" \| "custom" \| "clear" \| "clearOne" \| "dynamic"` | Password type, or dynamic (dynamic code) |
| `name` | `string` | Display name |
| `password` | `string` | Password plaintext or display string |
| `unlockBindingId` | `string` | Cloud binding relationship ID |
| `effectiveConfig` | `EffectiveConfig` | Effective time configuration |

### Error Codes

| Error Code | Error Message |
| --- | --- |
| `1031` | Password name too long (over 20 characters) |
| `1044` | unlockBindingId not specified when not clearing all |
| `1038` | Cloud: duplicate password name (OFFLINE_PWD_NAME_REPEAT) |
| `1067` | Cloud: offline passwords exhausted for the period (OFFLINE_PWD_EXAUST_IN_PERIOD) |
| `1040` | Cloud: record not found (RECORD_NOT_EXIST) |

### Referenced Types

##### `type` Week

Weekly repeat bitmap: indices 0–6 correspond to Sun–Sat; 0 inactive, 1 active

```typescript
export type Week = [
  BitStatus,
  BitStatus,
  BitStatus,
  BitStatus,
  BitStatus,
  BitStatus,
  BitStatus,
];
```

##### `type` BitStatus

Bit switch: 0 off, 1 on / Single-bit flag

```typescript
export type BitStatus = 0 | 1;
```


### Examples

#### Example

```ts
import { createTempClear } from '@ray-js/lock-sdk';
const result = await createTempClear({ type: 'all' });
```
