@pristy/pristy-libvue 0.32.0 → 0.32.2

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.
@@ -1405,6 +1405,8 @@ const k = new u0(), w = L({
1405
1405
  SHOW_ACA_LOGIN_LINK: !1,
1406
1406
  SENTRY_ENABLE: !1,
1407
1407
  SENTRY_DSN: "",
1408
+ DEFAULT_ELEMENT_PER_PAGE: 0,
1409
+ ROW_PER_PAGE_OPTIONS: [],
1408
1410
  SEARCH_BASE_FILTER_QUERIES: [
1409
1411
  { query: "+TYPE:'cm:folder' OR +TYPE:'cm:content'" },
1410
1412
  {
@@ -2204,7 +2206,7 @@ class B0 {
2204
2206
  }
2205
2207
  getProcesses() {
2206
2208
  return g.get(
2207
- `/alfresco/api/-default-/public/workflow/versions/1/processes?where=(startUserId=${localStorage.getItem("ACS_USERNAME")})`,
2209
+ `/alfresco/api/-default-/public/workflow/versions/1/processes?where=(startUserId='${localStorage.getItem("ACS_USERNAME")}')`,
2208
2210
  {
2209
2211
  headers: {
2210
2212
  Authorization: `Basic ${btoa(`ROLE_TICKET:${localStorage.getItem("ticket-ECM")}`)}`,
@@ -2230,7 +2232,7 @@ class B0 {
2230
2232
  }
2231
2233
  getFinishedProcesses() {
2232
2234
  return g.get(
2233
- `/alfresco/api/-default-/public/workflow/versions/1/processes?where=(status=completed and startUserId=${localStorage.getItem("ACS_USERNAME")})`,
2235
+ `/alfresco/api/-default-/public/workflow/versions/1/processes?where=(status=completed and startUserId='${localStorage.getItem("ACS_USERNAME")}')`,
2234
2236
  {
2235
2237
  headers: {
2236
2238
  Authorization: `Basic ${btoa(`ROLE_TICKET:${localStorage.getItem("ticket-ECM")}`)}`,
@@ -2334,7 +2336,7 @@ class B0 {
2334
2336
  // Tasks methods
2335
2337
  listTasks() {
2336
2338
  return g.get(
2337
- `/alfresco/api/-default-/public/workflow/versions/1/tasks?where=(assignee=${localStorage.getItem("ACS_USERNAME")})`,
2339
+ `/alfresco/api/-default-/public/workflow/versions/1/tasks?where=(assignee='${localStorage.getItem("ACS_USERNAME")}')`,
2338
2340
  {
2339
2341
  headers: {
2340
2342
  Authorization: `Basic ${btoa(`ROLE_TICKET:${localStorage.getItem("ticket-ECM")}`)}`,
@@ -2352,7 +2354,7 @@ class B0 {
2352
2354
  }
2353
2355
  listFinishedTasks() {
2354
2356
  return g.get(
2355
- `/alfresco/api/-default-/public/workflow/versions/1/tasks?where=(status=completed and assignee=${localStorage.getItem("ACS_USERNAME")})`,
2357
+ `/alfresco/api/-default-/public/workflow/versions/1/tasks?where=(status=completed and assignee='${localStorage.getItem("ACS_USERNAME")}')`,
2356
2358
  {
2357
2359
  headers: {
2358
2360
  Authorization: `Basic ${btoa(`ROLE_TICKET:${localStorage.getItem("ticket-ECM")}`)}`,
@@ -2679,7 +2681,8 @@ const dt = new B0(), pt = L({
2679
2681
  emptyFolder: !1,
2680
2682
  role: null,
2681
2683
  canUpload: !1,
2682
- pagination: null
2684
+ pagination: null,
2685
+ isInConsultation: !1
2683
2686
  }),
2684
2687
  actions: {
2685
2688
  /**