├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── thingsboard.php ├── cover.png ├── lang └── en │ ├── exception.php │ └── validation.php ├── pint.json └── src ├── Casts ├── CastBase64Image.php ├── CastId.php ├── CastObjectJsonString.php ├── CastTenantProfileDataConfiguration.php ├── Dashboard │ └── CastConfiguration.php └── WidgetType │ └── CastDescriptor.php ├── Entities ├── AdminSettings.php ├── AdminSystemInfo.php ├── AdminUpdates.php ├── Alarm.php ├── Asset.php ├── AssetProfile.php ├── AuditLog.php ├── Auth.php ├── ComponentDescriptor.php ├── Customer.php ├── Dashboard.php ├── Device.php ├── DeviceApi.php ├── DeviceProfile.php ├── Edge.php ├── EntityQuery.php ├── EntityRelation.php ├── Event.php ├── Mqtt.php ├── Queue.php ├── Rpc.php ├── RuleChain.php ├── Telemetry.php ├── Tenant.php ├── TenantProfile.php ├── Usage.php ├── User.php ├── WidgetBundle.php └── WidgetType.php ├── Enums ├── BaseEnum.php ├── EnumAlarmSearchStatus.php ├── EnumAlarmSeverityList.php ├── EnumAlarmSortProperty.php ├── EnumAlarmStatus.php ├── EnumAssetProfileQueue.php ├── EnumAssetProfileSortProperty.php ├── EnumAssetSortProperty.php ├── EnumAuditLogActionStatus.php ├── EnumAuditLogActionType.php ├── EnumAuditLogSortProperty.php ├── EnumAuthority.php ├── EnumComponentDescriptorClusteringMode.php ├── EnumComponentDescriptorScope.php ├── EnumComponentDescriptorType.php ├── EnumCustomerSortProperty.php ├── EnumDashboardSortProperty.php ├── EnumDefaultWidgetTypeDescriptor.php ├── EnumDeviceCredentialsType.php ├── EnumDeviceProfileProvisionType.php ├── EnumDeviceProfileSortProperty.php ├── EnumDeviceProfileTransportType.php ├── EnumDeviceSortProperty.php ├── EnumEdgeSortProperty.php ├── EnumEntityType.php ├── EnumEventSortProperty.php ├── EnumEventType.php ├── EnumQueryEntityFilterTypes.php ├── EnumQueryEntityKeyFilterPredicate.php ├── EnumQueryEntitySortKeyFilterTypes.php ├── EnumQueueProcessingStrategyType.php ├── EnumQueueServiceType.php ├── EnumQueueSortProperty.php ├── EnumQueueSubmitStrategy.php ├── EnumRpcSortProperty.php ├── EnumRpcStatus.php ├── EnumRuleChainScriptLang.php ├── EnumRuleChainSortProperty.php ├── EnumRuleChainType.php ├── EnumSortOrder.php ├── EnumTelemetryAggregation.php ├── EnumTelemetryScope.php ├── EnumTenantProfileSortProperty.php ├── EnumTenantSortProperty.php ├── EnumTokenType.php ├── EnumUserSortProperty.php └── EnumWidgetBundleSortProperty.php ├── Exceptions ├── Exception.php └── ThingsboardExceptionHandler.php ├── Infrastructure ├── Base64Image.php ├── CacheHandler.php ├── CustomCastBase.php ├── Dashboard │ └── Configuration.php ├── DeviceCredentials.php ├── HasCustomCasts.php ├── Id.php ├── Markdown.php ├── PaginationArguments.php ├── PasswordPolicy.php ├── RuleChain │ └── ImportStructure.php ├── TenantProfileData │ ├── Configuration │ │ ├── Configuration.php │ │ └── RateLimits.php │ ├── ProfileData.php │ └── QueueConfiguration │ │ ├── ProcessingStrategy.php │ │ ├── Queue.php │ │ ├── QueueConfiguration.php │ │ └── SubmitStrategy.php ├── Token.php ├── Type.php └── WidgetType │ └── Descriptor.php ├── Interfaces └── ThingsboardUser.php ├── LaravelThingsboardServiceProvider.php ├── Thingsboard.php ├── Tntity.php ├── Traits └── ThingsboardUser.php └── helpers.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/composer.json -------------------------------------------------------------------------------- /config/thingsboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/config/thingsboard.php -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/cover.png -------------------------------------------------------------------------------- /lang/en/exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/lang/en/exception.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/pint.json -------------------------------------------------------------------------------- /src/Casts/CastBase64Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Casts/CastBase64Image.php -------------------------------------------------------------------------------- /src/Casts/CastId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Casts/CastId.php -------------------------------------------------------------------------------- /src/Casts/CastObjectJsonString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Casts/CastObjectJsonString.php -------------------------------------------------------------------------------- /src/Casts/CastTenantProfileDataConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Casts/CastTenantProfileDataConfiguration.php -------------------------------------------------------------------------------- /src/Casts/Dashboard/CastConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Casts/Dashboard/CastConfiguration.php -------------------------------------------------------------------------------- /src/Casts/WidgetType/CastDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Casts/WidgetType/CastDescriptor.php -------------------------------------------------------------------------------- /src/Entities/AdminSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/AdminSettings.php -------------------------------------------------------------------------------- /src/Entities/AdminSystemInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/AdminSystemInfo.php -------------------------------------------------------------------------------- /src/Entities/AdminUpdates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/AdminUpdates.php -------------------------------------------------------------------------------- /src/Entities/Alarm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Alarm.php -------------------------------------------------------------------------------- /src/Entities/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Asset.php -------------------------------------------------------------------------------- /src/Entities/AssetProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/AssetProfile.php -------------------------------------------------------------------------------- /src/Entities/AuditLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/AuditLog.php -------------------------------------------------------------------------------- /src/Entities/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Auth.php -------------------------------------------------------------------------------- /src/Entities/ComponentDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/ComponentDescriptor.php -------------------------------------------------------------------------------- /src/Entities/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Customer.php -------------------------------------------------------------------------------- /src/Entities/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Dashboard.php -------------------------------------------------------------------------------- /src/Entities/Device.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Device.php -------------------------------------------------------------------------------- /src/Entities/DeviceApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/DeviceApi.php -------------------------------------------------------------------------------- /src/Entities/DeviceProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/DeviceProfile.php -------------------------------------------------------------------------------- /src/Entities/Edge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Edge.php -------------------------------------------------------------------------------- /src/Entities/EntityQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/EntityQuery.php -------------------------------------------------------------------------------- /src/Entities/EntityRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/EntityRelation.php -------------------------------------------------------------------------------- /src/Entities/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Event.php -------------------------------------------------------------------------------- /src/Entities/Mqtt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Mqtt.php -------------------------------------------------------------------------------- /src/Entities/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Queue.php -------------------------------------------------------------------------------- /src/Entities/Rpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Rpc.php -------------------------------------------------------------------------------- /src/Entities/RuleChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/RuleChain.php -------------------------------------------------------------------------------- /src/Entities/Telemetry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Telemetry.php -------------------------------------------------------------------------------- /src/Entities/Tenant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Tenant.php -------------------------------------------------------------------------------- /src/Entities/TenantProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/TenantProfile.php -------------------------------------------------------------------------------- /src/Entities/Usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/Usage.php -------------------------------------------------------------------------------- /src/Entities/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/User.php -------------------------------------------------------------------------------- /src/Entities/WidgetBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/WidgetBundle.php -------------------------------------------------------------------------------- /src/Entities/WidgetType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Entities/WidgetType.php -------------------------------------------------------------------------------- /src/Enums/BaseEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/BaseEnum.php -------------------------------------------------------------------------------- /src/Enums/EnumAlarmSearchStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAlarmSearchStatus.php -------------------------------------------------------------------------------- /src/Enums/EnumAlarmSeverityList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAlarmSeverityList.php -------------------------------------------------------------------------------- /src/Enums/EnumAlarmSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAlarmSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumAlarmStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAlarmStatus.php -------------------------------------------------------------------------------- /src/Enums/EnumAssetProfileQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAssetProfileQueue.php -------------------------------------------------------------------------------- /src/Enums/EnumAssetProfileSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAssetProfileSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumAssetSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAssetSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumAuditLogActionStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAuditLogActionStatus.php -------------------------------------------------------------------------------- /src/Enums/EnumAuditLogActionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAuditLogActionType.php -------------------------------------------------------------------------------- /src/Enums/EnumAuditLogSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAuditLogSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumAuthority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumAuthority.php -------------------------------------------------------------------------------- /src/Enums/EnumComponentDescriptorClusteringMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumComponentDescriptorClusteringMode.php -------------------------------------------------------------------------------- /src/Enums/EnumComponentDescriptorScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumComponentDescriptorScope.php -------------------------------------------------------------------------------- /src/Enums/EnumComponentDescriptorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumComponentDescriptorType.php -------------------------------------------------------------------------------- /src/Enums/EnumCustomerSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumCustomerSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumDashboardSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumDashboardSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumDefaultWidgetTypeDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumDefaultWidgetTypeDescriptor.php -------------------------------------------------------------------------------- /src/Enums/EnumDeviceCredentialsType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumDeviceCredentialsType.php -------------------------------------------------------------------------------- /src/Enums/EnumDeviceProfileProvisionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumDeviceProfileProvisionType.php -------------------------------------------------------------------------------- /src/Enums/EnumDeviceProfileSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumDeviceProfileSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumDeviceProfileTransportType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumDeviceProfileTransportType.php -------------------------------------------------------------------------------- /src/Enums/EnumDeviceSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumDeviceSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumEdgeSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumEdgeSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumEntityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumEntityType.php -------------------------------------------------------------------------------- /src/Enums/EnumEventSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumEventSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumEventType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumEventType.php -------------------------------------------------------------------------------- /src/Enums/EnumQueryEntityFilterTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumQueryEntityFilterTypes.php -------------------------------------------------------------------------------- /src/Enums/EnumQueryEntityKeyFilterPredicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumQueryEntityKeyFilterPredicate.php -------------------------------------------------------------------------------- /src/Enums/EnumQueryEntitySortKeyFilterTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumQueryEntitySortKeyFilterTypes.php -------------------------------------------------------------------------------- /src/Enums/EnumQueueProcessingStrategyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumQueueProcessingStrategyType.php -------------------------------------------------------------------------------- /src/Enums/EnumQueueServiceType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumQueueServiceType.php -------------------------------------------------------------------------------- /src/Enums/EnumQueueSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumQueueSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumQueueSubmitStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumQueueSubmitStrategy.php -------------------------------------------------------------------------------- /src/Enums/EnumRpcSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumRpcSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumRpcStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumRpcStatus.php -------------------------------------------------------------------------------- /src/Enums/EnumRuleChainScriptLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumRuleChainScriptLang.php -------------------------------------------------------------------------------- /src/Enums/EnumRuleChainSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumRuleChainSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumRuleChainType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumRuleChainType.php -------------------------------------------------------------------------------- /src/Enums/EnumSortOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumSortOrder.php -------------------------------------------------------------------------------- /src/Enums/EnumTelemetryAggregation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumTelemetryAggregation.php -------------------------------------------------------------------------------- /src/Enums/EnumTelemetryScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumTelemetryScope.php -------------------------------------------------------------------------------- /src/Enums/EnumTenantProfileSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumTenantProfileSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumTenantSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumTenantSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumTokenType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumTokenType.php -------------------------------------------------------------------------------- /src/Enums/EnumUserSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumUserSortProperty.php -------------------------------------------------------------------------------- /src/Enums/EnumWidgetBundleSortProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Enums/EnumWidgetBundleSortProperty.php -------------------------------------------------------------------------------- /src/Exceptions/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Exceptions/Exception.php -------------------------------------------------------------------------------- /src/Exceptions/ThingsboardExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Exceptions/ThingsboardExceptionHandler.php -------------------------------------------------------------------------------- /src/Infrastructure/Base64Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/Base64Image.php -------------------------------------------------------------------------------- /src/Infrastructure/CacheHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/CacheHandler.php -------------------------------------------------------------------------------- /src/Infrastructure/CustomCastBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/CustomCastBase.php -------------------------------------------------------------------------------- /src/Infrastructure/Dashboard/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/Dashboard/Configuration.php -------------------------------------------------------------------------------- /src/Infrastructure/DeviceCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/DeviceCredentials.php -------------------------------------------------------------------------------- /src/Infrastructure/HasCustomCasts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/HasCustomCasts.php -------------------------------------------------------------------------------- /src/Infrastructure/Id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/Id.php -------------------------------------------------------------------------------- /src/Infrastructure/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/Markdown.php -------------------------------------------------------------------------------- /src/Infrastructure/PaginationArguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/PaginationArguments.php -------------------------------------------------------------------------------- /src/Infrastructure/PasswordPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/PasswordPolicy.php -------------------------------------------------------------------------------- /src/Infrastructure/RuleChain/ImportStructure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/RuleChain/ImportStructure.php -------------------------------------------------------------------------------- /src/Infrastructure/TenantProfileData/Configuration/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/TenantProfileData/Configuration/Configuration.php -------------------------------------------------------------------------------- /src/Infrastructure/TenantProfileData/Configuration/RateLimits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/TenantProfileData/Configuration/RateLimits.php -------------------------------------------------------------------------------- /src/Infrastructure/TenantProfileData/ProfileData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/TenantProfileData/ProfileData.php -------------------------------------------------------------------------------- /src/Infrastructure/TenantProfileData/QueueConfiguration/ProcessingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/TenantProfileData/QueueConfiguration/ProcessingStrategy.php -------------------------------------------------------------------------------- /src/Infrastructure/TenantProfileData/QueueConfiguration/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/TenantProfileData/QueueConfiguration/Queue.php -------------------------------------------------------------------------------- /src/Infrastructure/TenantProfileData/QueueConfiguration/QueueConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/TenantProfileData/QueueConfiguration/QueueConfiguration.php -------------------------------------------------------------------------------- /src/Infrastructure/TenantProfileData/QueueConfiguration/SubmitStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/TenantProfileData/QueueConfiguration/SubmitStrategy.php -------------------------------------------------------------------------------- /src/Infrastructure/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/Token.php -------------------------------------------------------------------------------- /src/Infrastructure/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/Type.php -------------------------------------------------------------------------------- /src/Infrastructure/WidgetType/Descriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Infrastructure/WidgetType/Descriptor.php -------------------------------------------------------------------------------- /src/Interfaces/ThingsboardUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Interfaces/ThingsboardUser.php -------------------------------------------------------------------------------- /src/LaravelThingsboardServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/LaravelThingsboardServiceProvider.php -------------------------------------------------------------------------------- /src/Thingsboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Thingsboard.php -------------------------------------------------------------------------------- /src/Tntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Tntity.php -------------------------------------------------------------------------------- /src/Traits/ThingsboardUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/Traits/ThingsboardUser.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalallinux/laravel-thingsboard/HEAD/src/helpers.php --------------------------------------------------------------------------------