Skip to content

Commit

Permalink
Removing unused key
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Feb 8, 2022
1 parent 70d9b97 commit 5596067
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 46 deletions.
2 changes: 1 addition & 1 deletion fastybird_metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
Metadata loader and validator and sets of useful enums
"""

__version__ = "0.41.0"
__version__ = "0.42.0"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "@fastybird/metadata",
"version" : "0.41.0",
"version" : "0.42.0",
"description" : "FastyBird metadata reader & validator for modules, plugins & etc. used by FastyBird applications",
"keywords" : [
"fastybird",
Expand Down
6 changes: 0 additions & 6 deletions public/lib/types/devices-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ export enum ConnectorPropertyName {
export interface ConnectorEntity {
id: string
type: string
key: string
name: string
enabled: boolean
address?: number | null
Expand All @@ -118,7 +117,6 @@ export interface ConnectorPropertyEntity {
id: string
type: PropertyType
identifier: string
key: string
name: string | null
settable: boolean
queryable: boolean
Expand Down Expand Up @@ -151,7 +149,6 @@ export interface DeviceEntity {
id: string
type: string
identifier: string
key: string
name: string | null
comment: string | null
enabled: boolean
Expand All @@ -171,7 +168,6 @@ export interface DevicePropertyEntity {
id: string
type: PropertyType
identifier: string
key: string
name: string | null
settable: boolean
queryable: boolean
Expand Down Expand Up @@ -203,7 +199,6 @@ export interface DeviceControlEntity {
export interface ChannelEntity {
id: string
identifier: string
key: string
name: string | null
comment: string | null
device: string
Expand All @@ -216,7 +211,6 @@ export interface ChannelPropertyEntity {
id: string
type: PropertyType
identifier: string
key: string
name: string | null
settable: boolean
queryable: boolean
Expand Down
4 changes: 2 additions & 2 deletions resources/schemas/actions/action.connector.property.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"properties" : {
"expected_value" : {
"$ref" : "#/definitions/types/string_number_boolean",
"description" : "Property value to be written into device"
"description" : "Property value to be written into connector"
}
},
"required" : [
Expand All @@ -87,7 +87,7 @@
"properties" : {
"actual_value" : {
"$ref" : "#/definitions/types/string_number_boolean",
"description" : "Property value stored in device"
"description" : "Property value stored in connector"
},
"pending" : {
"type" : "boolean"
Expand Down
5 changes: 0 additions & 5 deletions resources/schemas/modules/devices-module/entity.channel.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@
"type" : "string",
"description" : "Unique human readable identifier used across services"
},
"key" : {
"type" : "string",
"description" : "Unique pub/sub identifier per each entity"
},
"name" : {
"$ref" : "#/definitions/types/nullable_string",
"default" : null
Expand All @@ -48,7 +44,6 @@
"required" : [
"id",
"identifier",
"key",
"name",
"comment",
"device"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,6 @@
"type" : "string",
"description" : "Unique human readable identifier used across services"
},
"key" : {
"type" : "string",
"description" : "Unique pub/sub identifier per each entity"
},
"name" : {
"$ref" : "#/definitions/types/nullable_string",
"default" : null
Expand Down Expand Up @@ -218,7 +214,6 @@
"id",
"type",
"identifier",
"key",
"settable",
"queryable",
"data_type",
Expand All @@ -242,7 +237,6 @@
"id",
"type",
"identifier",
"key",
"settable",
"queryable",
"data_type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@
"type" : "string",
"description" : "Connector type identifier"
},
"key" : {
"type" : "string",
"description" : "Unique pub/sub identifier per each entity"
},
"name" : {
"type" : "string"
},
Expand Down Expand Up @@ -75,7 +71,6 @@
"required" : [
"id",
"type",
"key",
"name",
"enabled",
"address",
Expand Down Expand Up @@ -114,7 +109,6 @@
"required" : [
"id",
"type",
"key",
"name",
"enabled",
"server",
Expand All @@ -128,7 +122,6 @@
"required" : [
"id",
"type",
"key",
"name",
"enabled",
"owner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,6 @@
"type" : "string",
"description" : "Unique human readable identifier used across services"
},
"key" : {
"type" : "string",
"description" : "Unique pub/sub identifier per each entity"
},
"name" : {
"$ref" : "#/definitions/types/nullable_string",
"default" : null
Expand Down Expand Up @@ -185,7 +181,7 @@
},
"connector" : {
"type" : "string",
"description" : "Channel unique uuid v4 identifier used across services"
"description" : "Connector unique uuid v4 identifier used across services"
},
"owner" : {
"$ref" : "#/definitions/types/nullable_string",
Expand Down Expand Up @@ -218,7 +214,6 @@
"id",
"type",
"identifier",
"key",
"settable",
"queryable",
"data_type",
Expand All @@ -242,7 +237,6 @@
"id",
"type",
"identifier",
"key",
"settable",
"queryable",
"data_type",
Expand Down
5 changes: 0 additions & 5 deletions resources/schemas/modules/devices-module/entity.device.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@
"type" : "string",
"description" : "Unique human readable identifier used across services"
},
"key" : {
"type" : "string",
"description" : "Unique pub/sub identifier per each entity"
},
"name" : {
"$ref" : "#/definitions/types/nullable_string",
"default" : null
Expand Down Expand Up @@ -80,7 +76,6 @@
"required" : [
"id",
"identifier",
"key",
"name",
"comment",
"enabled",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,6 @@
"type" : "string",
"description" : "Unique human readable identifier used across services"
},
"key" : {
"type" : "string",
"description" : "Unique pub/sub identifier per each entity"
},
"name" : {
"$ref" : "#/definitions/types/nullable_string",
"default" : null
Expand Down Expand Up @@ -218,7 +214,6 @@
"id",
"type",
"identifier",
"key",
"settable",
"queryable",
"data_type",
Expand All @@ -242,7 +237,6 @@
"id",
"type",
"identifier",
"key",
"settable",
"queryable",
"data_type",
Expand Down

0 comments on commit 5596067

Please sign in to comment.