@things-factory/operato-ecs 9.2.7 → 9.2.13

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.
@@ -7,7 +7,7 @@ const APIS = [
7
7
  path: 'scenario/:id',
8
8
  method: 'get',
9
9
  parameters: [],
10
- description: 'get scenario information'
10
+ description: 'get scenario by id'
11
11
  },
12
12
  {
13
13
  name: 'scenarios',
@@ -21,7 +21,7 @@ const APIS = [
21
21
  name: 'limit'
22
22
  }
23
23
  ],
24
- description: 'get scenario information'
24
+ description: 'get scenario list'
25
25
  }
26
26
  ];
27
27
  let APISandbox = class APISandbox extends APIPageTemplate {
@@ -1 +1 @@
1
- {"version":3,"file":"api-sandbox.js","sourceRoot":"","sources":["../../../client/pages/api/api-sandbox.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,MAAM,IAAI,GAAG;IACX;QACE,IAAI,EAAE,UAAU;QAChB,IAAI,EAAE,cAAc;QACpB,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,EAAE;QACd,WAAW,EAAE,0BAA0B;KACxC;IACD;QACE,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,UAAU;QAChB,MAAM,EAAE,KAAK;QACb,UAAU,EAAE;YACV;gBACE,IAAI,EAAE,MAAM;aACb;YACD;gBACE,IAAI,EAAE,OAAO;aACd;SACF;QACD,WAAW,EAAE,0BAA0B;KACxC;CACF,CAAA;AAGD,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,eAAe;IACtC,IAAI,IAAI;QACN,OAAO,IAAI,CAAA;IACb,CAAC;IAED,IAAI,OAAO;QACT,OAAO;YACL,KAAK,EAAE,aAAa;YACpB,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,2CAA2C;SACzD,CAAA;IACH,CAAC;CACF,CAAA;AAZK,UAAU;IADf,aAAa,CAAC,aAAa,CAAC;GACvB,UAAU,CAYf","sourcesContent":["import { customElement } from 'lit/decorators.js'\nimport { APIPageTemplate } from '@things-factory/api/client'\n\nconst APIS = [\n {\n name: 'scenario',\n path: 'scenario/:id',\n method: 'get',\n parameters: [],\n description: 'get scenario information'\n },\n {\n name: 'scenarios',\n path: 'scenario',\n method: 'get',\n parameters: [\n {\n name: 'page'\n },\n {\n name: 'limit'\n }\n ],\n description: 'get scenario information'\n }\n]\n\n@customElement('api-sandbox')\nclass APISandbox extends APIPageTemplate {\n get APIS(): any {\n return APIS\n }\n\n get context() {\n return {\n title: 'API Sandbox',\n apiCategory: 'Integration',\n description: 'Scenario control, connection control, ...'\n }\n }\n}\n"]}
1
+ {"version":3,"file":"api-sandbox.js","sourceRoot":"","sources":["../../../client/pages/api/api-sandbox.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAA;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,MAAM,IAAI,GAAG;IACX;QACE,IAAI,EAAE,UAAU;QAChB,IAAI,EAAE,cAAc;QACpB,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,EAAE;QACd,WAAW,EAAE,oBAAoB;KAClC;IACD;QACE,IAAI,EAAE,WAAW;QACjB,IAAI,EAAE,UAAU;QAChB,MAAM,EAAE,KAAK;QACb,UAAU,EAAE;YACV;gBACE,IAAI,EAAE,MAAM;aACb;YACD;gBACE,IAAI,EAAE,OAAO;aACd;SACF;QACD,WAAW,EAAE,mBAAmB;KACjC;CACF,CAAA;AAGD,IAAM,UAAU,GAAhB,MAAM,UAAW,SAAQ,eAAe;IACtC,IAAI,IAAI;QACN,OAAO,IAAI,CAAA;IACb,CAAC;IAED,IAAI,OAAO;QACT,OAAO;YACL,KAAK,EAAE,aAAa;YACpB,WAAW,EAAE,aAAa;YAC1B,WAAW,EAAE,2CAA2C;SACzD,CAAA;IACH,CAAC;CACF,CAAA;AAZK,UAAU;IADf,aAAa,CAAC,aAAa,CAAC;GACvB,UAAU,CAYf","sourcesContent":["import { customElement } from 'lit/decorators.js'\nimport { APIPageTemplate } from '@things-factory/api/client'\n\nconst APIS = [\n {\n name: 'scenario',\n path: 'scenario/:id',\n method: 'get',\n parameters: [],\n description: 'get scenario by id'\n },\n {\n name: 'scenarios',\n path: 'scenario',\n method: 'get',\n parameters: [\n {\n name: 'page'\n },\n {\n name: 'limit'\n }\n ],\n description: 'get scenario list'\n }\n]\n\n@customElement('api-sandbox')\nclass APISandbox extends APIPageTemplate {\n get APIS(): any {\n return APIS\n }\n\n get context() {\n return {\n title: 'API Sandbox',\n apiCategory: 'Integration',\n description: 'Scenario control, connection control, ...'\n }\n }\n}\n"]}