@things-factory/operato-dataset 6.1.184 → 6.1.186

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.
Files changed (2) hide show
  1. package/package.json +34 -34
  2. package/schema.graphql +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-dataset",
3
- "version": "6.1.184",
3
+ "version": "6.1.186",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -60,40 +60,40 @@
60
60
  "@operato/scene-table": "^1.0.0",
61
61
  "@operato/scene-timer": "^1.0.0",
62
62
  "@operato/shell": "^1.2.6",
63
- "@things-factory/api": "^6.1.182",
64
- "@things-factory/apptool-base": "^6.1.182",
65
- "@things-factory/apptool-ui": "^6.1.182",
66
- "@things-factory/auth-base": "^6.1.182",
67
- "@things-factory/auth-ui": "^6.1.182",
68
- "@things-factory/board-service": "^6.1.182",
69
- "@things-factory/board-ui": "^6.1.184",
70
- "@things-factory/ccp": "^6.1.182",
71
- "@things-factory/context-ui": "^6.1.182",
72
- "@things-factory/dashboard": "^6.1.184",
73
- "@things-factory/dataset": "^6.1.182",
74
- "@things-factory/export-ui": "^6.1.182",
75
- "@things-factory/help": "^6.1.182",
76
- "@things-factory/i18n-base": "^6.1.182",
77
- "@things-factory/integration-base": "^6.1.182",
78
- "@things-factory/integration-msgraph": "^6.1.182",
79
- "@things-factory/integration-ui": "^6.1.182",
80
- "@things-factory/lite-menu": "^6.1.184",
81
- "@things-factory/more-base": "^6.1.182",
82
- "@things-factory/more-ui": "^6.1.182",
83
- "@things-factory/notification": "^6.1.182",
84
- "@things-factory/oauth2-client": "^6.1.182",
85
- "@things-factory/organization": "^6.1.182",
86
- "@things-factory/qc": "^6.1.182",
87
- "@things-factory/resource-ui": "^6.1.182",
88
- "@things-factory/setting-base": "^6.1.182",
89
- "@things-factory/setting-ui": "^6.1.182",
90
- "@things-factory/shell": "^6.1.182",
91
- "@things-factory/system-ui": "^6.1.182",
92
- "@things-factory/work-shift": "^6.1.182",
93
- "@things-factory/worklist": "^6.1.182"
63
+ "@things-factory/api": "^6.1.186",
64
+ "@things-factory/apptool-base": "^6.1.186",
65
+ "@things-factory/apptool-ui": "^6.1.186",
66
+ "@things-factory/auth-base": "^6.1.186",
67
+ "@things-factory/auth-ui": "^6.1.186",
68
+ "@things-factory/board-service": "^6.1.186",
69
+ "@things-factory/board-ui": "^6.1.186",
70
+ "@things-factory/ccp": "^6.1.186",
71
+ "@things-factory/context-ui": "^6.1.186",
72
+ "@things-factory/dashboard": "^6.1.186",
73
+ "@things-factory/dataset": "^6.1.186",
74
+ "@things-factory/export-ui": "^6.1.186",
75
+ "@things-factory/help": "^6.1.186",
76
+ "@things-factory/i18n-base": "^6.1.186",
77
+ "@things-factory/integration-base": "^6.1.186",
78
+ "@things-factory/integration-msgraph": "^6.1.186",
79
+ "@things-factory/integration-ui": "^6.1.186",
80
+ "@things-factory/lite-menu": "^6.1.186",
81
+ "@things-factory/more-base": "^6.1.186",
82
+ "@things-factory/more-ui": "^6.1.186",
83
+ "@things-factory/notification": "^6.1.186",
84
+ "@things-factory/oauth2-client": "^6.1.186",
85
+ "@things-factory/organization": "^6.1.186",
86
+ "@things-factory/qc": "^6.1.186",
87
+ "@things-factory/resource-ui": "^6.1.186",
88
+ "@things-factory/setting-base": "^6.1.186",
89
+ "@things-factory/setting-ui": "^6.1.186",
90
+ "@things-factory/shell": "^6.1.186",
91
+ "@things-factory/system-ui": "^6.1.186",
92
+ "@things-factory/work-shift": "^6.1.186",
93
+ "@things-factory/worklist": "^6.1.186"
94
94
  },
95
95
  "devDependencies": {
96
- "@things-factory/builder": "^6.1.181"
96
+ "@things-factory/builder": "^6.1.186"
97
97
  },
98
- "gitHead": "1f5edf229aac2fc5a7032049ed441926567aa149"
98
+ "gitHead": "ddf508496cdd7d4b9d0e020703a2f7a586a42ec5"
99
99
  }
package/schema.graphql CHANGED
@@ -1271,6 +1271,7 @@ type DataSet {
1271
1271
  monitorView: String
1272
1272
  name: String!
1273
1273
  nextSchedule: DateTimeISO
1274
+ nextSummarySchedule: DateTimeISO
1274
1275
  partitionKeys: Object
1275
1276
  prevSchedule: DateTimeISO
1276
1277
  reportTemplate: String
@@ -1280,6 +1281,7 @@ type DataSet {
1280
1281
  scheduleId: String
1281
1282
  status: DataSetState!
1282
1283
  summaryPeriod: String
1284
+ summarySchedule: String
1283
1285
  summaryScheduleId: String
1284
1286
 
1285
1287
  """The final authority on issues related to that dataset."""
@@ -2993,6 +2995,9 @@ type Mutation {
2993
2995
  """To start data collection schedule for the given dataset"""
2994
2996
  startDataCollectionSchedule(dataSetId: String!): DataSet!
2995
2997
 
2998
+ """To start data summary schedule for the given dataset"""
2999
+ startDataSummarySchedule(dataSetId: String!): DataSet!
3000
+
2996
3001
  """To start new scenario instance"""
2997
3002
  startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2998
3003
 
@@ -3005,6 +3010,9 @@ type Mutation {
3005
3010
  """To stop data collection schedule for the given dataset"""
3006
3011
  stopDataCollectionSchedule(dataSetId: String!): DataSet
3007
3012
 
3013
+ """To stop data summary schedule for the given dataset"""
3014
+ stopDataSummarySchedule(dataSetId: String!): DataSet
3015
+
3008
3016
  """To start new scenario instance"""
3009
3017
  stopScenario(instanceName: String): ScenarioInstance
3010
3018