@hatiolab/things-scene 9.0.0-beta.4 → 9.0.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/db.sqlite +0 -0
- package/package.json +2 -1
- package/schema.graphql +5 -0
- package/things-scene-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.d.ts +7 -0
- package/things-scene.mjs +13 -14
package/db.sqlite
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hatiolab/things-scene",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.6",
|
|
4
4
|
"description": "2D graphic library",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"module": "things-scene.mjs",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
},
|
|
81
81
|
"homepage": "https://github.com/hatiolab/things-scene#readme",
|
|
82
82
|
"dependencies": {
|
|
83
|
+
"@material/web": "^2.2.0",
|
|
83
84
|
"@wizpanda/super-gif": "^0.0.6",
|
|
84
85
|
"canvas-roundrect-polyfill": "^0.0.1",
|
|
85
86
|
"core-js": "^3.26.0",
|
package/schema.graphql
CHANGED
|
@@ -712,6 +712,7 @@ input DomainGeneratorInput {
|
|
|
712
712
|
|
|
713
713
|
input DomainInput {
|
|
714
714
|
description: String
|
|
715
|
+
extType: String
|
|
715
716
|
name: String!
|
|
716
717
|
}
|
|
717
718
|
|
|
@@ -726,6 +727,7 @@ input DomainPatch {
|
|
|
726
727
|
brandName: String
|
|
727
728
|
contentImage: String
|
|
728
729
|
description: String
|
|
730
|
+
extType: String
|
|
729
731
|
id: String
|
|
730
732
|
name: String
|
|
731
733
|
owner: String
|
|
@@ -3646,6 +3648,9 @@ type Query {
|
|
|
3646
3648
|
"""To fetch domain"""
|
|
3647
3649
|
domain(id: String!): Domain!
|
|
3648
3650
|
|
|
3651
|
+
"""To fetch domain"""
|
|
3652
|
+
domainTypes: [String!]!
|
|
3653
|
+
|
|
3649
3654
|
"""To fetch all domains (Only superuser is granted this privilege.)"""
|
|
3650
3655
|
domains(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): DomainList!
|
|
3651
3656
|
|