@epilot/customer-portal-client 0.40.0 → 0.40.1

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": "@epilot/customer-portal-client",
3
- "version": "0.40.0",
3
+ "version": "0.40.1",
4
4
  "description": "API Client for epilot portal API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1663,6 +1663,19 @@
1663
1663
  "responses": {}
1664
1664
  }
1665
1665
  },
1666
+ "/v2/portal/user/file/{id}/preview": {
1667
+ "get": {
1668
+ "operationId": "getFilePreview",
1669
+ "parameters": [
1670
+ {
1671
+ "in": "path",
1672
+ "name": "id",
1673
+ "required": true
1674
+ }
1675
+ ],
1676
+ "responses": {}
1677
+ }
1678
+ },
1666
1679
  "/v2/portal/user/file/{id}/downloaded": {
1667
1680
  "post": {
1668
1681
  "operationId": "trackFileDownloaded",
@@ -1954,6 +1967,12 @@
1954
1967
  "responses": {}
1955
1968
  }
1956
1969
  },
1970
+ "/v2/portal/engagement/tasks": {
1971
+ "get": {
1972
+ "operationId": "getOutstandingTasks",
1973
+ "responses": {}
1974
+ }
1975
+ },
1957
1976
  "/v2/portal/entity/{slug}/{id}/workflows/linearized": {
1958
1977
  "get": {
1959
1978
  "operationId": "getEntityPortalWorkflows",
@@ -1972,6 +1991,18 @@
1972
1991
  "responses": {}
1973
1992
  }
1974
1993
  },
1994
+ "/v2/portal/entities/workflows/linearized/batch": {
1995
+ "post": {
1996
+ "operationId": "getEntityPortalWorkflowsBatch",
1997
+ "requestBody": {
1998
+ "required": true,
1999
+ "content": {
2000
+ "application/json": {}
2001
+ }
2002
+ },
2003
+ "responses": {}
2004
+ }
2005
+ },
1975
2006
  "/v2/portal/metering/reading/photo": {
1976
2007
  "post": {
1977
2008
  "operationId": "uploadMeterReadingPhoto",
@@ -2401,6 +2432,49 @@
2401
2432
  "responses": {}
2402
2433
  }
2403
2434
  },
2435
+ "/v2/portal/notifications": {
2436
+ "get": {
2437
+ "operationId": "listPortalNotifications",
2438
+ "parameters": [
2439
+ {
2440
+ "in": "query",
2441
+ "name": "cursor",
2442
+ "required": false
2443
+ },
2444
+ {
2445
+ "in": "query",
2446
+ "name": "limit",
2447
+ "required": false
2448
+ }
2449
+ ],
2450
+ "responses": {}
2451
+ }
2452
+ },
2453
+ "/v2/portal/notifications/unread-count": {
2454
+ "get": {
2455
+ "operationId": "getPortalNotificationsUnreadCount",
2456
+ "responses": {}
2457
+ }
2458
+ },
2459
+ "/v2/portal/notifications/read-all": {
2460
+ "put": {
2461
+ "operationId": "markAllPortalNotificationsRead",
2462
+ "responses": {}
2463
+ }
2464
+ },
2465
+ "/v2/portal/notifications/{id}/read": {
2466
+ "put": {
2467
+ "operationId": "markPortalNotificationRead",
2468
+ "parameters": [
2469
+ {
2470
+ "in": "path",
2471
+ "name": "id",
2472
+ "required": true
2473
+ }
2474
+ ],
2475
+ "responses": {}
2476
+ }
2477
+ },
2404
2478
  "/v2/portal/notifications/entity:status": {
2405
2479
  "put": {
2406
2480
  "operationId": "updateNotificationsStatus",