diff --git a/docs/auth/role/index.md b/docs/auth/role/index.md index c5bc9d4..2b10485 100644 --- a/docs/auth/role/index.md +++ b/docs/auth/role/index.md @@ -10,11 +10,13 @@ A role API resource represents an assignable label for users that provides a con ## Fields -| Name | Type | Nullable | Default | Description | -| :--------: | :-----: | :------: | :-----: | :-------------------------------------------- | -| id | Integer | No | Yes | The primary key of the resource | -| name | String | No | Yes | The label of the resource | -| guard_name | String | No | Yes | The authentication guard of the resource | -| default | Boolean | No | Yes | Is the role assigned on account verification? | -| created_at | Date | No | No | The date that the resource was created | -| updated_at | Date | No | No | The date that the resource was last modified | \ No newline at end of file +| Name | Type | Nullable | Default | Description | +| :--------: | :-----: | :------: | :-----: | :------------------------------------------------------------------------------------- | +| id | Integer | No | Yes | The primary key of the resource | +| name | String | No | Yes | The label of the resource | +| guard_name | String | No | Yes | The authentication guard of the resource | +| default | Boolean | No | Yes | Is the role assigned on account verification? | +| color | String | Yes | Yes | The hex representation of the color used to distinguish the resource | +| priority | Integer | Yes | Yes | The weight assigned to the resource, where higher values correspond to higher priority | +| created_at | Date | No | No | The date that the resource was created | +| updated_at | Date | No | No | The date that the resource was last modified | \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 0bab09c..3eb62fd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "MIT", "dependencies": { "dotenv": "^16.0.3", - "vitepress": "^1.0.0-alpha.59" + "vitepress": "^1.0.0-alpha.60" } }, "node_modules/@algolia/autocomplete-core": { @@ -1057,9 +1057,9 @@ } }, "node_modules/vitepress": { - "version": "1.0.0-alpha.59", - "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.0.0-alpha.59.tgz", - "integrity": "sha512-kKs/srBf4n4uWalhD3jvMkyXbszq4sDW5rx2RdWwhUZJE9Fm9dmL6BRf0IfLnPpEJWIiM5loQf/8ndspm5g7tQ==", + "version": "1.0.0-alpha.60", + "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.0.0-alpha.60.tgz", + "integrity": "sha512-GI5iLDkZRqGEPixbSloT+p6pbKcMh9ykRRxt8vf9AjV1gaPit6Stg/t9WNxTdIhKVCuQMexGs1605DNApSRK2A==", "dependencies": { "@docsearch/css": "^3.3.3", "@docsearch/js": "^3.3.3", diff --git a/package.json b/package.json index 73b62db..01b3551 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,6 @@ "license": "MIT", "dependencies": { "dotenv": "^16.0.3", - "vitepress": "^1.0.0-alpha.59" + "vitepress": "^1.0.0-alpha.60" } }