@things-factory/operato-board 6.1.11 → 6.1.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-board",
3
- "version": "6.1.11",
3
+ "version": "6.1.14",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -80,41 +80,41 @@
80
80
  "@operato/shell": "^1.0.1",
81
81
  "@operato/styles": "^1.0.0",
82
82
  "@operato/utils": "^1.0.1",
83
- "@things-factory/apptool-ui": "^6.1.11",
84
- "@things-factory/auth-ui": "^6.1.11",
85
- "@things-factory/board-service": "^6.1.11",
86
- "@things-factory/board-ui": "^6.1.11",
87
- "@things-factory/context-ui": "^6.1.11",
88
- "@things-factory/export-ui": "^6.1.11",
89
- "@things-factory/fav-base": "^6.1.11",
90
- "@things-factory/font-base": "^6.1.11",
83
+ "@things-factory/apptool-ui": "^6.1.12",
84
+ "@things-factory/auth-ui": "^6.1.12",
85
+ "@things-factory/board-service": "^6.1.12",
86
+ "@things-factory/board-ui": "^6.1.12",
87
+ "@things-factory/context-ui": "^6.1.12",
88
+ "@things-factory/export-ui": "^6.1.12",
89
+ "@things-factory/fav-base": "^6.1.12",
90
+ "@things-factory/font-base": "^6.1.12",
91
91
  "@things-factory/form-ui": "^6.1.8",
92
- "@things-factory/help": "^6.1.11",
93
- "@things-factory/i18n-base": "^6.1.11",
94
- "@things-factory/import-ui": "^6.1.11",
95
- "@things-factory/integration-base": "^6.1.11",
96
- "@things-factory/integration-msgraph": "^6.1.11",
97
- "@things-factory/integration-notification": "^6.1.11",
98
- "@things-factory/integration-openai": "^6.1.11",
99
- "@things-factory/integration-ui": "^6.1.11",
92
+ "@things-factory/help": "^6.1.12",
93
+ "@things-factory/i18n-base": "^6.1.12",
94
+ "@things-factory/import-ui": "^6.1.12",
95
+ "@things-factory/integration-base": "^6.1.12",
96
+ "@things-factory/integration-msgraph": "^6.1.12",
97
+ "@things-factory/integration-notification": "^6.1.14",
98
+ "@things-factory/integration-openai": "^6.1.14",
99
+ "@things-factory/integration-ui": "^6.1.12",
100
100
  "@things-factory/layout-ui": "^6.1.8",
101
- "@things-factory/more-ui": "^6.1.11",
102
- "@things-factory/notification": "^6.1.11",
103
- "@things-factory/oauth2-client": "^6.1.11",
104
- "@things-factory/offline-ui": "^6.1.11",
101
+ "@things-factory/more-ui": "^6.1.12",
102
+ "@things-factory/notification": "^6.1.14",
103
+ "@things-factory/oauth2-client": "^6.1.12",
104
+ "@things-factory/offline-ui": "^6.1.12",
105
105
  "@things-factory/operato-license-checker": "^3.1.0",
106
106
  "@things-factory/pdf": "^6.1.0",
107
- "@things-factory/print-service": "^6.1.11",
108
- "@things-factory/print-ui": "^6.1.11",
109
- "@things-factory/resource-ui": "^6.1.11",
107
+ "@things-factory/print-service": "^6.1.12",
108
+ "@things-factory/print-ui": "^6.1.12",
109
+ "@things-factory/resource-ui": "^6.1.12",
110
110
  "@things-factory/scene-google-map": "^6.1.0",
111
- "@things-factory/setting-ui": "^6.1.11",
112
- "@things-factory/shell": "^6.1.11",
113
- "@things-factory/system-ui": "^6.1.11"
111
+ "@things-factory/setting-ui": "^6.1.12",
112
+ "@things-factory/shell": "^6.1.12",
113
+ "@things-factory/system-ui": "^6.1.12"
114
114
  },
115
115
  "devDependencies": {
116
- "@things-factory/board-test": "^6.1.11",
116
+ "@things-factory/board-test": "^6.1.12",
117
117
  "@things-factory/builder": "^6.1.11"
118
118
  },
119
- "gitHead": "484864c861289750237b70b336dfb09c83ceb65a"
119
+ "gitHead": "d8e9d6b5481341e12cf5e300f1a562850c0ac9e1"
120
120
  }
package/schema.gql CHANGED
@@ -729,6 +729,16 @@ input GroupPatch {
729
729
  name: String
730
730
  }
731
731
 
732
+ input ImageCompletionInput {
733
+ count: Float!
734
+ description: String!
735
+ size: String!
736
+ }
737
+
738
+ type ImageCompletionOutput {
739
+ images: String
740
+ }
741
+
732
742
  enum InheritedValueType {
733
743
  Include
734
744
  None
@@ -2346,6 +2356,7 @@ type Query {
2346
2356
  """To query whether I have the given permission"""
2347
2357
  hasPrivilege(category: String!, name: String!): Boolean!
2348
2358
  i18nCompletion(input: i18nCompletionInput!): i18nCompletionOutput!
2359
+ imageCompletion(input: ImageCompletionInput!): ImageCompletionOutput!
2349
2360
  invitation(email: String!, reference: String!, type: String!): Invitation!
2350
2361
  invitations(reference: String!, type: String!): InvitationList!
2351
2362
 
@@ -50,7 +50,7 @@
50
50
 
51
51
  <!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
52
52
  <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
53
- <link href="node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
53
+ <link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
54
54
  <link rel="stylesheet" href="/theme.css" />
55
55
 
56
56
  <style>
@@ -82,8 +82,8 @@
82
82
  Please enable JavaScript to view this website.
83
83
  </noscript>
84
84
  <!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
85
- <script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
86
- <script src="node_modules/web-animations-js/web-animations-next.min.js"></script>
85
+ <script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
86
+ <script src="/node_modules/web-animations-js/web-animations-next.min.js"></script>
87
87
  <!-- Built with love using PWA Starter Kit -->
88
88
 
89
89
  <script src="<%- elementScript %>"></script>
@@ -50,7 +50,7 @@
50
50
 
51
51
  <!-- Performance tip: hint to the browser to start the handshake for the fonts site -->
52
52
  <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
53
- <link href="node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
53
+ <link href="/node_modules/@material-design-icons/font/index.css" rel="stylesheet" />
54
54
  <link rel="stylesheet" href="/theme.css" />
55
55
 
56
56
  <style>
@@ -80,8 +80,8 @@
80
80
  ></home-page>
81
81
  <noscript> Please enable JavaScript to view this website. </noscript>
82
82
  <!-- Load webcomponents-loader.js to check and load any polyfills your browser needs -->
83
- <script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
84
- <script src="node_modules/web-animations-js/web-animations-next.min.js"></script>
83
+ <script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
84
+ <script src="/node_modules/web-animations-js/web-animations-next.min.js"></script>
85
85
  <!-- Built with love using PWA Starter Kit -->
86
86
 
87
87
  <script type="module" src="/public/home.js"></script>