@fibery/views 17.0.4 → 18.0.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.
- package/lib/index.js +17 -0
- package/lib/jest.config.d.ts +2 -0
- package/lib/jest.config.js +33 -0
- package/lib/src/field-utils/avatar.d.ts +20 -0
- package/lib/src/field-utils/avatar.js +42 -0
- package/lib/src/field-utils/back-references.d.ts +15 -0
- package/lib/src/field-utils/back-references.js +21 -0
- package/lib/src/field-utils/comments.d.ts +60 -0
- package/lib/src/field-utils/comments.js +46 -0
- package/lib/src/field-utils/date-time.d.ts +14 -0
- package/lib/src/field-utils/date-time.js +56 -0
- package/lib/src/field-utils/enum-value.d.ts +13 -0
- package/lib/src/field-utils/enum-value.js +29 -0
- package/lib/src/field-utils/file.d.ts +4 -0
- package/lib/src/field-utils/file.js +18 -0
- package/lib/src/field-utils/icon.d.ts +10 -0
- package/lib/src/field-utils/icon.js +26 -0
- package/lib/src/field-utils/number.d.ts +31 -0
- package/lib/src/field-utils/number.js +91 -0
- package/lib/src/field-utils/reference-collection.d.ts +18 -0
- package/lib/src/field-utils/reference-collection.js +45 -0
- package/lib/src/field-utils/reference.d.ts +7 -0
- package/lib/src/field-utils/reference.js +57 -0
- package/lib/src/field-utils/relation-view.d.ts +2 -0
- package/lib/src/field-utils/relation-view.js +12 -0
- package/lib/src/field-utils/rich-text.d.ts +12 -0
- package/lib/src/field-utils/rich-text.js +27 -0
- package/lib/src/field-utils/text.d.ts +35 -0
- package/lib/src/field-utils/text.js +40 -0
- package/lib/src/field-utils/user-active.d.ts +8 -0
- package/lib/src/field-utils/user-active.js +28 -0
- package/lib/src/field-utils/user-role.d.ts +6 -0
- package/lib/src/field-utils/user-role.js +25 -0
- package/lib/src/field-utils/workflow.d.ts +15 -0
- package/lib/src/field-utils/workflow.js +56 -0
- package/lib/src/index.d.ts +16 -0
- package/lib/src/index.js +258 -0
- package/lib/src/private/board.d.ts +11 -0
- package/lib/src/private/board.js +326 -0
- package/lib/src/private/calendar.d.ts +10 -0
- package/lib/src/private/calendar.js +122 -0
- package/lib/src/private/feed.d.ts +10 -0
- package/lib/src/private/feed.js +119 -0
- package/lib/src/private/form.d.ts +3 -0
- package/lib/src/private/form.js +61 -0
- package/lib/src/private/map.d.ts +10 -0
- package/lib/src/private/map.js +119 -0
- package/lib/src/private/smart-folder.d.ts +23 -0
- package/lib/src/private/smart-folder.js +274 -0
- package/lib/src/private/test-data/garbage-test.d.ts +649 -0
- package/lib/src/private/test-data/garbage-test.js +520 -0
- package/lib/src/private/test-data/kanban.d.ts +1123 -0
- package/lib/src/private/test-data/kanban.js +1203 -0
- package/lib/src/private/test-data/tasks.d.ts +3216 -0
- package/lib/src/private/test-data/tasks.js +2731 -0
- package/lib/src/private/timeline.d.ts +10 -0
- package/lib/src/private/timeline.js +323 -0
- package/lib/src/private/units.d.ts +6 -0
- package/lib/src/private/units.js +144 -0
- package/lib/src/private/utils.d.ts +17 -0
- package/lib/src/private/utils.js +267 -0
- package/lib/src/tsfixme.d.ts +1 -0
- package/lib/src/tsfixme.js +2 -0
- package/lib/src/unit-definitions/avatar-collection.d.ts +2 -0
- package/lib/src/unit-definitions/avatar-collection.js +53 -0
- package/lib/src/unit-definitions/avatar-input.d.ts +2 -0
- package/lib/src/unit-definitions/avatar-input.js +12 -0
- package/lib/src/unit-definitions/avatar.d.ts +2 -0
- package/lib/src/unit-definitions/avatar.js +80 -0
- package/lib/src/unit-definitions/back-references-list.d.ts +2 -0
- package/lib/src/unit-definitions/back-references-list.js +38 -0
- package/lib/src/unit-definitions/bool-checkbox.d.ts +2 -0
- package/lib/src/unit-definitions/bool-checkbox.js +25 -0
- package/lib/src/unit-definitions/bool.d.ts +2 -0
- package/lib/src/unit-definitions/bool.js +22 -0
- package/lib/src/unit-definitions/collection-count.d.ts +2 -0
- package/lib/src/unit-definitions/collection-count.js +32 -0
- package/lib/src/unit-definitions/color-input.d.ts +2 -0
- package/lib/src/unit-definitions/color-input.js +21 -0
- package/lib/src/unit-definitions/comments-list.d.ts +2 -0
- package/lib/src/unit-definitions/comments-list.js +25 -0
- package/lib/src/unit-definitions/date-range-combobox.d.ts +2 -0
- package/lib/src/unit-definitions/date-range-combobox.js +22 -0
- package/lib/src/unit-definitions/date-range.d.ts +2 -0
- package/lib/src/unit-definitions/date-range.js +22 -0
- package/lib/src/unit-definitions/date-time-combobox.d.ts +2 -0
- package/lib/src/unit-definitions/date-time-combobox.js +22 -0
- package/lib/src/unit-definitions/date.d.ts +2 -0
- package/lib/src/unit-definitions/date.js +22 -0
- package/lib/src/unit-definitions/email-input.d.ts +2 -0
- package/lib/src/unit-definitions/email-input.js +12 -0
- package/lib/src/unit-definitions/email.d.ts +2 -0
- package/lib/src/unit-definitions/email.js +17 -0
- package/lib/src/unit-definitions/emoji.d.ts +2 -0
- package/lib/src/unit-definitions/emoji.js +17 -0
- package/lib/src/unit-definitions/file-collection-count.d.ts +2 -0
- package/lib/src/unit-definitions/file-collection-count.js +30 -0
- package/lib/src/unit-definitions/file-compact-collection.d.ts +2 -0
- package/lib/src/unit-definitions/file-compact-collection.js +30 -0
- package/lib/src/unit-definitions/file-compact-reference.d.ts +2 -0
- package/lib/src/unit-definitions/file-compact-reference.js +36 -0
- package/lib/src/unit-definitions/file-reference.d.ts +2 -0
- package/lib/src/unit-definitions/file-reference.js +26 -0
- package/lib/src/unit-definitions/files-gallery.d.ts +2 -0
- package/lib/src/unit-definitions/files-gallery.js +30 -0
- package/lib/src/unit-definitions/files-l-list-item.d.ts +2 -0
- package/lib/src/unit-definitions/files-l-list-item.js +26 -0
- package/lib/src/unit-definitions/files-l-list.d.ts +2 -0
- package/lib/src/unit-definitions/files-l-list.js +30 -0
- package/lib/src/unit-definitions/files-list-item.d.ts +2 -0
- package/lib/src/unit-definitions/files-list-item.js +26 -0
- package/lib/src/unit-definitions/files-list.d.ts +2 -0
- package/lib/src/unit-definitions/files-list.js +30 -0
- package/lib/src/unit-definitions/geometry-preview.d.ts +2 -0
- package/lib/src/unit-definitions/geometry-preview.js +17 -0
- package/lib/src/unit-definitions/icon-button.d.ts +2 -0
- package/lib/src/unit-definitions/icon-button.js +29 -0
- package/lib/src/unit-definitions/icon-input.d.ts +2 -0
- package/lib/src/unit-definitions/icon-input.js +12 -0
- package/lib/src/unit-definitions/id.d.ts +2 -0
- package/lib/src/unit-definitions/id.js +29 -0
- package/lib/src/unit-definitions/index.d.ts +27 -0
- package/lib/src/unit-definitions/index.js +57 -0
- package/lib/src/unit-definitions/json-input.d.ts +2 -0
- package/lib/src/unit-definitions/json-input.js +21 -0
- package/lib/src/unit-definitions/location-input.d.ts +2 -0
- package/lib/src/unit-definitions/location-input.js +18 -0
- package/lib/src/unit-definitions/location.d.ts +2 -0
- package/lib/src/unit-definitions/location.js +17 -0
- package/lib/src/unit-definitions/not-found.d.ts +2 -0
- package/lib/src/unit-definitions/not-found.js +24 -0
- package/lib/src/unit-definitions/number-input.d.ts +2 -0
- package/lib/src/unit-definitions/number-input.js +22 -0
- package/lib/src/unit-definitions/number.d.ts +2 -0
- package/lib/src/unit-definitions/number.js +27 -0
- package/lib/src/unit-definitions/phone-input.d.ts +2 -0
- package/lib/src/unit-definitions/phone-input.js +12 -0
- package/lib/src/unit-definitions/phone.d.ts +2 -0
- package/lib/src/unit-definitions/phone.js +12 -0
- package/lib/src/unit-definitions/progress-bar.d.ts +2 -0
- package/lib/src/unit-definitions/progress-bar.js +32 -0
- package/lib/src/unit-definitions/reference-collection-combobox.d.ts +2 -0
- package/lib/src/unit-definitions/reference-collection-combobox.js +21 -0
- package/lib/src/unit-definitions/reference-collection-list.d.ts +2 -0
- package/lib/src/unit-definitions/reference-collection-list.js +22 -0
- package/lib/src/unit-definitions/reference-collection-view.d.ts +2 -0
- package/lib/src/unit-definitions/reference-collection-view.js +19 -0
- package/lib/src/unit-definitions/reference-collection.d.ts +2 -0
- package/lib/src/unit-definitions/reference-collection.js +27 -0
- package/lib/src/unit-definitions/reference-combobox.d.ts +2 -0
- package/lib/src/unit-definitions/reference-combobox.js +21 -0
- package/lib/src/unit-definitions/reference-icon.d.ts +2 -0
- package/lib/src/unit-definitions/reference-icon.js +12 -0
- package/lib/src/unit-definitions/reference.d.ts +2 -0
- package/lib/src/unit-definitions/reference.js +49 -0
- package/lib/src/unit-definitions/rich-text-document.d.ts +2 -0
- package/lib/src/unit-definitions/rich-text-document.js +22 -0
- package/lib/src/unit-definitions/rich-text-snippet.d.ts +2 -0
- package/lib/src/unit-definitions/rich-text-snippet.js +39 -0
- package/lib/src/unit-definitions/single-location-preview.d.ts +2 -0
- package/lib/src/unit-definitions/single-location-preview.js +17 -0
- package/lib/src/unit-definitions/text-input.d.ts +2 -0
- package/lib/src/unit-definitions/text-input.js +22 -0
- package/lib/src/unit-definitions/text.d.ts +2 -0
- package/lib/src/unit-definitions/text.js +22 -0
- package/lib/src/unit-definitions/title-input.d.ts +2 -0
- package/lib/src/unit-definitions/title-input.js +16 -0
- package/lib/src/unit-definitions/title.d.ts +2 -0
- package/lib/src/unit-definitions/title.js +34 -0
- package/lib/src/unit-definitions/type-badge-abbr.d.ts +2 -0
- package/lib/src/unit-definitions/type-badge-abbr.js +25 -0
- package/lib/src/unit-definitions/type-badge.d.ts +2 -0
- package/lib/src/unit-definitions/type-badge.js +25 -0
- package/lib/src/unit-definitions/type-icon.d.ts +2 -0
- package/lib/src/unit-definitions/type-icon.js +25 -0
- package/lib/src/unit-definitions/url-input.d.ts +2 -0
- package/lib/src/unit-definitions/url-input.js +12 -0
- package/lib/src/unit-definitions/url.d.ts +2 -0
- package/lib/src/unit-definitions/url.js +17 -0
- package/lib/src/unit-definitions/user-button.d.ts +2 -0
- package/lib/src/unit-definitions/user-button.js +23 -0
- package/lib/src/unit-definitions/user-role-input.d.ts +2 -0
- package/lib/src/unit-definitions/user-role-input.js +12 -0
- package/lib/src/unit-definitions/user-role.d.ts +2 -0
- package/lib/src/unit-definitions/user-role.js +29 -0
- package/lib/src/unit-utils/access.d.ts +9 -0
- package/lib/src/unit-utils/access.js +14 -0
- package/lib/src/unit-utils/can-edit-field.d.ts +6 -0
- package/lib/src/unit-utils/can-edit-field.js +8 -0
- package/lib/src/unit-utils/common.d.ts +14 -0
- package/lib/src/unit-utils/common.js +43 -0
- package/lib/src/unit-utils/decimal.d.ts +42 -0
- package/lib/src/unit-utils/decimal.js +414 -0
- package/lib/src/unit-utils/dynamic-keys.d.ts +7 -0
- package/lib/src/unit-utils/dynamic-keys.js +13 -0
- package/lib/src/unit-utils/enums.d.ts +27 -0
- package/lib/src/unit-utils/enums.js +69 -0
- package/lib/src/unit-utils/formatters.d.ts +50 -0
- package/lib/src/unit-utils/formatters.js +163 -0
- package/lib/src/unit-utils/get-export-value.d.ts +45 -0
- package/lib/src/unit-utils/get-export-value.js +83 -0
- package/lib/src/unit-utils/get-field-label.d.ts +6 -0
- package/lib/src/unit-utils/get-field-label.js +10 -0
- package/lib/src/unit-utils/get-unmatched-unit-label.d.ts +2 -0
- package/lib/src/unit-utils/get-unmatched-unit-label.js +9 -0
- package/lib/src/unit-utils/schema.d.ts +4 -0
- package/lib/src/unit-utils/schema.js +12 -0
- package/lib/src/units/board.d.ts +43 -0
- package/lib/src/units/board.js +51 -0
- package/lib/src/units/canvas/all-units-data-definitions.d.ts +18 -0
- package/lib/src/units/canvas/all-units-data-definitions.js +40 -0
- package/lib/src/units/canvas/index.d.ts +42 -0
- package/lib/src/units/canvas/index.js +48 -0
- package/lib/src/units/canvas/type-badge-abbr.d.ts +36 -0
- package/lib/src/units/canvas/type-badge-abbr.js +11 -0
- package/lib/src/units/canvas/type-badge.d.ts +36 -0
- package/lib/src/units/canvas/type-badge.js +11 -0
- package/lib/src/units/default.d.ts +43 -0
- package/lib/src/units/default.js +51 -0
- package/lib/src/units/gallery.d.ts +3 -0
- package/lib/src/units/gallery.js +18 -0
- package/lib/src/units/gantt.d.ts +44 -0
- package/lib/src/units/gantt.js +59 -0
- package/lib/src/units/get-unit-definitions-for-view-type.d.ts +2 -0
- package/lib/src/units/get-unit-definitions-for-view-type.js +64 -0
- package/lib/src/units/grid.d.ts +42 -0
- package/lib/src/units/grid.js +67 -0
- package/lib/src/units/list.d.ts +43 -0
- package/lib/src/units/list.js +49 -0
- package/lib/src/units/make-factory.d.ts +50 -0
- package/lib/src/units/make-factory.js +245 -0
- package/lib/src/units/types.d.ts +73 -0
- package/lib/src/units/types.js +2 -0
- package/package.json +42 -52
- package/lib/views.js +0 -1813
- /package/{index.js → lib/index.d.ts} +0 -0
|
@@ -0,0 +1,520 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
/* eslint-disable max-lines */
|
|
4
|
+
exports.default = [
|
|
5
|
+
{
|
|
6
|
+
input: {
|
|
7
|
+
"fibery/id": "c45f44a0-8803-11ec-af75-69e3264b73ea",
|
|
8
|
+
"fibery/public-id": "2136",
|
|
9
|
+
"fibery/name": "New board",
|
|
10
|
+
"fibery/type": "board",
|
|
11
|
+
"fibery/meta": {
|
|
12
|
+
items: [
|
|
13
|
+
{
|
|
14
|
+
query: { "q/from": "ed6d58d1-c938-11eb-a055-e9f9bd67b102" },
|
|
15
|
+
units: [
|
|
16
|
+
{ checked: true, type: "title" },
|
|
17
|
+
{ checked: true, type: "type-icon" },
|
|
18
|
+
{ checked: false, expression: ["e6ff86c3-d9a1-11eb-b0eb-3831371e92b9"], type: "avatar-collection" },
|
|
19
|
+
{ checked: false, expression: ["edbf9785-c938-11eb-8d58-e4ad21e75895"], type: "reference" },
|
|
20
|
+
{ checked: false, expression: ["edbf9783-c938-11eb-8d58-e4ad21e75895"], type: "date-time" },
|
|
21
|
+
{ checked: false, type: "type-badge-abbr" },
|
|
22
|
+
{ checked: false, type: "type-badge" },
|
|
23
|
+
{ checked: false, type: "id" },
|
|
24
|
+
],
|
|
25
|
+
xExpression: ["edbf9785-c938-11eb-8d58-e4ad21e75895"],
|
|
26
|
+
yExpression: ["edbf9785-c938-11eb-8d58-e4ad21e75895"],
|
|
27
|
+
},
|
|
28
|
+
],
|
|
29
|
+
x: {
|
|
30
|
+
query: { "q/from": "1b728600-af9c-11e9-95b5-2985503542d7" },
|
|
31
|
+
type: ":axis-type/objects",
|
|
32
|
+
units: [
|
|
33
|
+
{ checked: false, type: "avatar" },
|
|
34
|
+
{ checked: false, expression: ["bd40f984-dfec-11eb-abd2-6b123f8eb627"], type: "avatar-collection" },
|
|
35
|
+
{ checked: false, type: "type-badge-abbr" },
|
|
36
|
+
{ checked: false, expression: ["96d0fe81-0be8-11ec-aac1-73d65416a28b"], type: "collection-count" },
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
y: {
|
|
40
|
+
query: { "q/from": "1b728600-af9c-11e9-95b5-2985503542d7" },
|
|
41
|
+
type: ":axis-type/objects",
|
|
42
|
+
units: [{ checked: false, expression: ["96d0fe81-0be8-11ec-aac1-73d65416a28b"], type: "collection-count" }],
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
"fibery/kek": "1",
|
|
46
|
+
},
|
|
47
|
+
output: {
|
|
48
|
+
"fibery/id": "c45f44a0-8803-11ec-af75-69e3264b73ea",
|
|
49
|
+
"fibery/public-id": "2136",
|
|
50
|
+
"fibery/name": "New board",
|
|
51
|
+
"fibery/type": "board",
|
|
52
|
+
"fibery/meta": {
|
|
53
|
+
items: [
|
|
54
|
+
{
|
|
55
|
+
colorCoding: undefined,
|
|
56
|
+
filter: null,
|
|
57
|
+
contextExpression: undefined,
|
|
58
|
+
query: { "q/from": "ed6d58d1-c938-11eb-a055-e9f9bd67b102" },
|
|
59
|
+
units: [
|
|
60
|
+
{ checked: true, type: "title" },
|
|
61
|
+
{ checked: true, type: "type-icon" },
|
|
62
|
+
],
|
|
63
|
+
xExpression: ["edbf9785-c938-11eb-8d58-e4ad21e75895"],
|
|
64
|
+
yExpression: ["edbf9785-c938-11eb-8d58-e4ad21e75895"],
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
x: {
|
|
68
|
+
contextExpression: undefined,
|
|
69
|
+
query: { "q/from": "1b728600-af9c-11e9-95b5-2985503542d7" },
|
|
70
|
+
type: ":axis-type/objects",
|
|
71
|
+
units: [],
|
|
72
|
+
},
|
|
73
|
+
y: {
|
|
74
|
+
contextExpression: undefined,
|
|
75
|
+
query: { "q/from": "1b728600-af9c-11e9-95b5-2985503542d7" },
|
|
76
|
+
type: ":axis-type/objects",
|
|
77
|
+
units: [],
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
"fibery/kek": "1",
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
input: {
|
|
85
|
+
"fibery/id": "e31c7e50-c01e-11ec-a695-57f40d2a6da5",
|
|
86
|
+
"fibery/public-id": "2869",
|
|
87
|
+
"fibery/name": "New calendar",
|
|
88
|
+
"fibery/type": "calendar",
|
|
89
|
+
"fibery/meta": {
|
|
90
|
+
items: [
|
|
91
|
+
{
|
|
92
|
+
endExpression: ["q/end", ["d69df450-160b-11ec-a565-9a70292d1b33"]],
|
|
93
|
+
filter: null,
|
|
94
|
+
query: { "q/from": "9e53e450-15fd-11ec-8b9e-6125f1215f7b" },
|
|
95
|
+
startExpression: ["q/start", ["d69df450-160b-11ec-a565-9a70292d1b33"]],
|
|
96
|
+
units: [
|
|
97
|
+
{ checked: true, type: "title" },
|
|
98
|
+
{ checked: false, expression: ["2cdb0210-21f4-11ec-ad21-27e366f34d0b"], type: "date-time" },
|
|
99
|
+
],
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
"fibery/creation-date": "2022-04-19T20:25:44.002Z",
|
|
104
|
+
"fibery/container-entity-id": "",
|
|
105
|
+
},
|
|
106
|
+
output: {
|
|
107
|
+
"fibery/id": "e31c7e50-c01e-11ec-a695-57f40d2a6da5",
|
|
108
|
+
"fibery/public-id": "2869",
|
|
109
|
+
"fibery/name": "New calendar",
|
|
110
|
+
"fibery/type": "calendar",
|
|
111
|
+
"fibery/meta": {
|
|
112
|
+
items: [
|
|
113
|
+
{
|
|
114
|
+
filter: null,
|
|
115
|
+
colorCoding: undefined,
|
|
116
|
+
contextExpression: undefined,
|
|
117
|
+
endExpression: ["q/end", ["d69df450-160b-11ec-a565-9a70292d1b33"]],
|
|
118
|
+
query: { "q/from": "9e53e450-15fd-11ec-8b9e-6125f1215f7b" },
|
|
119
|
+
startExpression: ["q/start", ["d69df450-160b-11ec-a565-9a70292d1b33"]],
|
|
120
|
+
units: [{ checked: true, type: "title" }],
|
|
121
|
+
},
|
|
122
|
+
],
|
|
123
|
+
},
|
|
124
|
+
"fibery/creation-date": "2022-04-19T20:25:44.002Z",
|
|
125
|
+
"fibery/container-entity-id": "",
|
|
126
|
+
},
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
input: {
|
|
130
|
+
"fibery/id": "ca01fd90-c01f-11ec-8ff5-db1d9c319383",
|
|
131
|
+
"fibery/public-id": "2871",
|
|
132
|
+
"fibery/name": "New feed",
|
|
133
|
+
"fibery/type": "feed",
|
|
134
|
+
"fibery/meta": {
|
|
135
|
+
items: [
|
|
136
|
+
{
|
|
137
|
+
postExpression: ["a7f48430-1605-11ec-a565-9a70292d1b33"],
|
|
138
|
+
query: { "q/from": "9e53e450-15fd-11ec-8b9e-6125f1215f7b" },
|
|
139
|
+
units: [
|
|
140
|
+
{ checked: true, type: "title" },
|
|
141
|
+
{ checked: true, expression: ["ab75a261-160a-11ec-a565-9a70292d1b33"], type: "reference" },
|
|
142
|
+
{ checked: false, expression: ["2cdb0210-21f4-11ec-ad21-27e366f34d0b"], type: "date-time" },
|
|
143
|
+
{ checked: false, expression: ["19d8bcc0-1f97-11ec-9c0b-80cc4bc6836d"], type: "text" },
|
|
144
|
+
{ checked: false, expression: ["e7768e90-1d18-11ec-bbe4-496e5b463d99"], type: "reference-collection" },
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
],
|
|
148
|
+
},
|
|
149
|
+
"fibery/creation-date": "2022-04-19T20:32:11.416Z",
|
|
150
|
+
"fibery/container-entity-id": "",
|
|
151
|
+
},
|
|
152
|
+
output: {
|
|
153
|
+
"fibery/id": "ca01fd90-c01f-11ec-8ff5-db1d9c319383",
|
|
154
|
+
"fibery/public-id": "2871",
|
|
155
|
+
"fibery/name": "New feed",
|
|
156
|
+
"fibery/type": "feed",
|
|
157
|
+
"fibery/meta": {
|
|
158
|
+
items: [
|
|
159
|
+
{
|
|
160
|
+
filter: null,
|
|
161
|
+
colorCoding: undefined,
|
|
162
|
+
contextExpression: undefined,
|
|
163
|
+
postExpression: ["a7f48430-1605-11ec-a565-9a70292d1b33"],
|
|
164
|
+
query: { "q/from": "9e53e450-15fd-11ec-8b9e-6125f1215f7b" },
|
|
165
|
+
units: [
|
|
166
|
+
{ checked: true, type: "title" },
|
|
167
|
+
{ checked: true, expression: ["ab75a261-160a-11ec-a565-9a70292d1b33"], type: "reference" },
|
|
168
|
+
],
|
|
169
|
+
},
|
|
170
|
+
],
|
|
171
|
+
},
|
|
172
|
+
"fibery/creation-date": "2022-04-19T20:32:11.416Z",
|
|
173
|
+
"fibery/container-entity-id": "",
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
input: {
|
|
178
|
+
"fibery/id": "13816d90-b452-11ec-be9b-b7cba94c43ad",
|
|
179
|
+
"fibery/public-id": "2790",
|
|
180
|
+
"fibery/name": "New table",
|
|
181
|
+
"fibery/type": "table",
|
|
182
|
+
"fibery/meta": {
|
|
183
|
+
items: [
|
|
184
|
+
{
|
|
185
|
+
query: { "q/from": "1b728600-af9c-11e9-95b5-2985503542d7" },
|
|
186
|
+
units: [
|
|
187
|
+
{ checked: true, type: "title" },
|
|
188
|
+
{ checked: false, expression: ["417591d0-e2ee-11eb-bcac-a01082ac8b93"], type: "reference" },
|
|
189
|
+
{ checked: false, expression: ["83e93ff3-3a23-11eb-a3a0-f36357c89ebf"], type: "bool" },
|
|
190
|
+
{ checked: false, expression: ["3e6024b1-c935-11eb-88a9-2705c42abd1d"], type: "reference-collection" },
|
|
191
|
+
],
|
|
192
|
+
},
|
|
193
|
+
],
|
|
194
|
+
},
|
|
195
|
+
"fibery/creation-date": "2022-04-04T20:01:55.882Z",
|
|
196
|
+
"fibery/container-entity-id": "",
|
|
197
|
+
},
|
|
198
|
+
output: {
|
|
199
|
+
"fibery/id": "13816d90-b452-11ec-be9b-b7cba94c43ad",
|
|
200
|
+
"fibery/public-id": "2790",
|
|
201
|
+
"fibery/name": "New table",
|
|
202
|
+
"fibery/type": "table",
|
|
203
|
+
"fibery/meta": {
|
|
204
|
+
items: [
|
|
205
|
+
{
|
|
206
|
+
filter: null,
|
|
207
|
+
colorCoding: undefined,
|
|
208
|
+
contextExpression: undefined,
|
|
209
|
+
query: { "q/from": "1b728600-af9c-11e9-95b5-2985503542d7" },
|
|
210
|
+
units: [{ checked: true, type: "title" }],
|
|
211
|
+
},
|
|
212
|
+
],
|
|
213
|
+
},
|
|
214
|
+
"fibery/creation-date": "2022-04-04T20:01:55.882Z",
|
|
215
|
+
"fibery/container-entity-id": "",
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
input: {
|
|
220
|
+
"fibery/id": "348f3c80-2ff8-11ec-ac11-5d04708ca4f3",
|
|
221
|
+
"fibery/public-id": "1809",
|
|
222
|
+
"fibery/name": "New timeline",
|
|
223
|
+
"fibery/type": "timeline",
|
|
224
|
+
"fibery/meta": {
|
|
225
|
+
items: [
|
|
226
|
+
{
|
|
227
|
+
contextExpression: ["e347a7c0-2c07-11ec-b50d-ede2e119626f"],
|
|
228
|
+
endExpression: ["q/end", ["2b810e70-2dc8-11ec-bc3f-1b1cf9448221"]],
|
|
229
|
+
params: {
|
|
230
|
+
$where1: "ef00c711-2fe3-11ec-9420-1f212fcd34c9",
|
|
231
|
+
$where2: "0d221260-2c08-11ec-9c5d-a06c54fef02f",
|
|
232
|
+
},
|
|
233
|
+
query: {
|
|
234
|
+
"q/from": "4a35edd0-db35-11eb-a8a1-9dadcb615f14",
|
|
235
|
+
"q/where": [
|
|
236
|
+
"and",
|
|
237
|
+
["=", ["f32a4c81-2fe3-11ec-b456-583254554733", "f337e11a-2fe3-11ec-b456-583254554733"], "$where1"],
|
|
238
|
+
["=", ["0b4c19e3-2c08-11ec-9c5d-a06c54fef02f", "0b6b88c0-2c08-11ec-9c5d-a06c54fef02f"], "$where2"],
|
|
239
|
+
],
|
|
240
|
+
},
|
|
241
|
+
startExpression: ["q/start", ["2b810e70-2dc8-11ec-bc3f-1b1cf9448221"]],
|
|
242
|
+
units: [
|
|
243
|
+
{ checked: true, type: "title" },
|
|
244
|
+
{ checked: false, expression: ["732e6590-2cc6-11ec-bfc1-72b94b7a3fb5"], type: "date" },
|
|
245
|
+
],
|
|
246
|
+
yExpression: ["a2bc8bf0-2fe3-11ec-b7e2-9a175bdeca2f"],
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
contextExpression: ["d9ee5070-2c07-11ec-b50d-ede2e119626f"],
|
|
250
|
+
endExpression: ["q/end", ["3adfd720-2dc8-11ec-bc3f-1b1cf9448221"]],
|
|
251
|
+
params: {
|
|
252
|
+
$where1: "099fa871-2fe4-11ec-9420-1f212fcd34c9",
|
|
253
|
+
$where2: "14526f30-2c08-11ec-9c5d-a06c54fef02f",
|
|
254
|
+
$where3: "7eb03380-2c08-11ec-a39d-2dcb1a54c69f",
|
|
255
|
+
},
|
|
256
|
+
query: {
|
|
257
|
+
"q/from": "20452db1-d432-11eb-82ba-03fdc5a2bf88",
|
|
258
|
+
"q/where": [
|
|
259
|
+
"and",
|
|
260
|
+
["=", ["0d8e6ed1-2fe4-11ec-b7e2-9a175bdeca2f", "0d959ac1-2fe4-11ec-b7e2-9a175bdeca2f"], "$where1"],
|
|
261
|
+
["=", ["11719663-2c08-11ec-9c5d-a06c54fef02f", "11871a30-2c08-11ec-9c5d-a06c54fef02f"], "$where2"],
|
|
262
|
+
["=", ["734b2db1-2c08-11ec-9c5d-a06c54fef02f", "735036c1-2c08-11ec-9c5d-a06c54fef02f"], "$where3"],
|
|
263
|
+
],
|
|
264
|
+
},
|
|
265
|
+
startExpression: ["q/start", ["3adfd720-2dc8-11ec-bc3f-1b1cf9448221"]],
|
|
266
|
+
units: [
|
|
267
|
+
{ checked: true, type: "title" },
|
|
268
|
+
{ checked: false, expression: ["a785d3d0-2fe3-11ec-b456-583254554733"], type: "reference-collection" },
|
|
269
|
+
],
|
|
270
|
+
yExpression: ["a785d3d0-2fe3-11ec-b456-583254554733"],
|
|
271
|
+
},
|
|
272
|
+
],
|
|
273
|
+
y: {
|
|
274
|
+
groupByExpression: null,
|
|
275
|
+
query: { "q/from": "1b728600-af9c-11e9-95b5-2985503542d7" },
|
|
276
|
+
type: ":axis-type/objects",
|
|
277
|
+
units: [{ checked: false, expression: ["e560a201-d018-11eb-8921-b11b81a2f7ed"], type: "reference" }],
|
|
278
|
+
},
|
|
279
|
+
},
|
|
280
|
+
"fibery/creation-date": "2021-10-18T09:46:02.576Z",
|
|
281
|
+
"fibery/container-entity-id": "1",
|
|
282
|
+
},
|
|
283
|
+
output: {
|
|
284
|
+
"fibery/id": "348f3c80-2ff8-11ec-ac11-5d04708ca4f3",
|
|
285
|
+
"fibery/public-id": "1809",
|
|
286
|
+
"fibery/name": "New timeline",
|
|
287
|
+
"fibery/type": "timeline",
|
|
288
|
+
"fibery/meta": {
|
|
289
|
+
items: [
|
|
290
|
+
{
|
|
291
|
+
filter: null,
|
|
292
|
+
colorCoding: undefined,
|
|
293
|
+
contextExpression: ["e347a7c0-2c07-11ec-b50d-ede2e119626f"],
|
|
294
|
+
endExpression: ["q/end", ["2b810e70-2dc8-11ec-bc3f-1b1cf9448221"]],
|
|
295
|
+
params: {
|
|
296
|
+
$where1: "ef00c711-2fe3-11ec-9420-1f212fcd34c9",
|
|
297
|
+
$where2: "0d221260-2c08-11ec-9c5d-a06c54fef02f",
|
|
298
|
+
},
|
|
299
|
+
query: {
|
|
300
|
+
"q/from": "4a35edd0-db35-11eb-a8a1-9dadcb615f14",
|
|
301
|
+
"q/where": [
|
|
302
|
+
"and",
|
|
303
|
+
["=", ["f32a4c81-2fe3-11ec-b456-583254554733", "f337e11a-2fe3-11ec-b456-583254554733"], "$where1"],
|
|
304
|
+
["=", ["0b4c19e3-2c08-11ec-9c5d-a06c54fef02f", "0b6b88c0-2c08-11ec-9c5d-a06c54fef02f"], "$where2"],
|
|
305
|
+
],
|
|
306
|
+
},
|
|
307
|
+
startExpression: ["q/start", ["2b810e70-2dc8-11ec-bc3f-1b1cf9448221"]],
|
|
308
|
+
units: [{ checked: true, type: "title" }],
|
|
309
|
+
yExpression: ["a2bc8bf0-2fe3-11ec-b7e2-9a175bdeca2f"],
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
colorCoding: undefined,
|
|
313
|
+
contextExpression: ["d9ee5070-2c07-11ec-b50d-ede2e119626f"],
|
|
314
|
+
endExpression: ["q/end", ["3adfd720-2dc8-11ec-bc3f-1b1cf9448221"]],
|
|
315
|
+
params: {
|
|
316
|
+
$where1: "099fa871-2fe4-11ec-9420-1f212fcd34c9",
|
|
317
|
+
$where2: "14526f30-2c08-11ec-9c5d-a06c54fef02f",
|
|
318
|
+
$where3: "7eb03380-2c08-11ec-a39d-2dcb1a54c69f",
|
|
319
|
+
},
|
|
320
|
+
filter: null,
|
|
321
|
+
query: {
|
|
322
|
+
"q/from": "20452db1-d432-11eb-82ba-03fdc5a2bf88",
|
|
323
|
+
"q/where": [
|
|
324
|
+
"and",
|
|
325
|
+
["=", ["0d8e6ed1-2fe4-11ec-b7e2-9a175bdeca2f", "0d959ac1-2fe4-11ec-b7e2-9a175bdeca2f"], "$where1"],
|
|
326
|
+
["=", ["11719663-2c08-11ec-9c5d-a06c54fef02f", "11871a30-2c08-11ec-9c5d-a06c54fef02f"], "$where2"],
|
|
327
|
+
["=", ["734b2db1-2c08-11ec-9c5d-a06c54fef02f", "735036c1-2c08-11ec-9c5d-a06c54fef02f"], "$where3"],
|
|
328
|
+
],
|
|
329
|
+
},
|
|
330
|
+
startExpression: ["q/start", ["3adfd720-2dc8-11ec-bc3f-1b1cf9448221"]],
|
|
331
|
+
units: [{ checked: true, type: "title" }],
|
|
332
|
+
yExpression: ["a785d3d0-2fe3-11ec-b456-583254554733"],
|
|
333
|
+
},
|
|
334
|
+
],
|
|
335
|
+
y: {
|
|
336
|
+
filter: null,
|
|
337
|
+
contextExpression: undefined,
|
|
338
|
+
groupByExpression: null,
|
|
339
|
+
query: { "q/from": "1b728600-af9c-11e9-95b5-2985503542d7" },
|
|
340
|
+
type: ":axis-type/objects",
|
|
341
|
+
units: [],
|
|
342
|
+
},
|
|
343
|
+
milestones: undefined,
|
|
344
|
+
},
|
|
345
|
+
"fibery/creation-date": "2021-10-18T09:46:02.576Z",
|
|
346
|
+
"fibery/container-entity-id": "1",
|
|
347
|
+
},
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
input: {
|
|
351
|
+
"fibery/id": "49a3aced-4cf9-417d-a03b-b300e0d0e735",
|
|
352
|
+
"fibery/public-id": "962",
|
|
353
|
+
"fibery/name": "Work by Product Area",
|
|
354
|
+
"fibery/type": "list",
|
|
355
|
+
"fibery/meta": {
|
|
356
|
+
items: [
|
|
357
|
+
{
|
|
358
|
+
groupBy: null,
|
|
359
|
+
params: {},
|
|
360
|
+
query: { "q/from": "b13a0d9f-1d4e-4c6c-b12f-7da3a4c9bf10" },
|
|
361
|
+
units: [
|
|
362
|
+
{ checked: true, type: "title" },
|
|
363
|
+
{ checked: false, expression: ["user/FAQs"], type: "reference-collection" },
|
|
364
|
+
],
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
groupBy: {
|
|
368
|
+
0: { expression: ["770e5e0e-1ee2-4c1e-b6da-9777b797f11d", "37901ed4-ea86-4e19-9fc6-89ec89957296"] },
|
|
369
|
+
},
|
|
370
|
+
groupingExpression: null,
|
|
371
|
+
params: { $where1: "57152d30-5dcb-11e8-90b6-c6e140253257" },
|
|
372
|
+
query: {
|
|
373
|
+
"q/from": "4e4d5bf1-46ed-434e-b259-2bcfe549d649",
|
|
374
|
+
"q/where": [
|
|
375
|
+
"!=",
|
|
376
|
+
["e83ba957-7466-4756-8e10-c4e6d6545160", "b0a9b18d-97d6-44f8-8286-837b2b104538"],
|
|
377
|
+
"$where1",
|
|
378
|
+
],
|
|
379
|
+
},
|
|
380
|
+
units: [
|
|
381
|
+
{ checked: true, type: "title" },
|
|
382
|
+
{ checked: false, expression: ["e3989e62-a385-11eb-9925-82006e212b0b"], type: "avatar" },
|
|
383
|
+
],
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
groupBy: { 1: { expression: ["SoftDev/feature", "fibery/id"] } },
|
|
387
|
+
groupingExpression: null,
|
|
388
|
+
params: { $where1: "57121ff0-5dcb-11e8-90b6-c6e140253257" },
|
|
389
|
+
query: { "q/from": "SoftDev/User~Story", "q/where": ["!=", ["workflow/state", "fibery/id"], "$where1"] },
|
|
390
|
+
units: [
|
|
391
|
+
{ checked: true, type: "title" },
|
|
392
|
+
{ checked: false, expression: ["fibery/modification-date"], type: "date-time" },
|
|
393
|
+
],
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
groupBy: { 2: { expression: ["user/user-story", "fibery/id"] } },
|
|
397
|
+
groupingExpression: null,
|
|
398
|
+
params: { $where1: "57183a70-5dcb-11e8-90b6-c6e140253257" },
|
|
399
|
+
query: { "q/from": "SoftDev/bug", "q/where": ["!=", ["workflow/state", "fibery/id"], "$where1"] },
|
|
400
|
+
units: [
|
|
401
|
+
{ checked: true, type: "title" },
|
|
402
|
+
{ checked: false, type: "type-icon" },
|
|
403
|
+
],
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
groupBy: { 0: { expression: ["user/Product Area", "fibery/id"] } },
|
|
407
|
+
groupingExpression: null,
|
|
408
|
+
params: { $where1: "a69b8160-7a0e-11e8-b84d-f7687e358899" },
|
|
409
|
+
query: {
|
|
410
|
+
"q/from": "c602a620-6afb-11eb-8427-a3a4ebfd9325",
|
|
411
|
+
"q/where": [
|
|
412
|
+
"!=",
|
|
413
|
+
["c602a62c-6afb-11eb-8427-a3a4ebfd9325", "c602a641-6afb-11eb-8427-a3a4ebfd9325"],
|
|
414
|
+
"$where1",
|
|
415
|
+
],
|
|
416
|
+
},
|
|
417
|
+
units: [
|
|
418
|
+
{ checked: true, type: "title" },
|
|
419
|
+
{ checked: false, expression: ["Ideation/Email"], type: "text" },
|
|
420
|
+
],
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
groupBy: { 0: { expression: ["user/Product Area", "fibery/id"] } },
|
|
424
|
+
groupingExpression: null,
|
|
425
|
+
params: { $where1: ["29deb6e0-cfea-11ea-b6ad-b5f5164e7b4f", "3566c780-a3bf-11e9-99da-9a8397fb9a17"] },
|
|
426
|
+
query: {
|
|
427
|
+
"q/from": "Customer Success/Insight",
|
|
428
|
+
"q/where": ["q/not-in", ["workflow/state", "fibery/id"], "$where1"],
|
|
429
|
+
},
|
|
430
|
+
units: [
|
|
431
|
+
{ checked: true, type: "title" },
|
|
432
|
+
{ checked: false, type: "type-icon" },
|
|
433
|
+
],
|
|
434
|
+
},
|
|
435
|
+
],
|
|
436
|
+
},
|
|
437
|
+
"fibery/creation-date": "2021-04-22T16:15:02.787Z",
|
|
438
|
+
"fibery/container-entity-id": "",
|
|
439
|
+
},
|
|
440
|
+
output: {
|
|
441
|
+
"fibery/id": "49a3aced-4cf9-417d-a03b-b300e0d0e735",
|
|
442
|
+
"fibery/public-id": "962",
|
|
443
|
+
"fibery/name": "Work by Product Area",
|
|
444
|
+
"fibery/type": "list",
|
|
445
|
+
"fibery/meta": {
|
|
446
|
+
items: [
|
|
447
|
+
{
|
|
448
|
+
filter: null,
|
|
449
|
+
groupBy: null,
|
|
450
|
+
groupingExpression: null,
|
|
451
|
+
params: {},
|
|
452
|
+
query: { "q/from": "b13a0d9f-1d4e-4c6c-b12f-7da3a4c9bf10" },
|
|
453
|
+
units: [{ checked: true, type: "title" }],
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
filter: null,
|
|
457
|
+
groupBy: {
|
|
458
|
+
0: { expression: ["770e5e0e-1ee2-4c1e-b6da-9777b797f11d", "37901ed4-ea86-4e19-9fc6-89ec89957296"] },
|
|
459
|
+
},
|
|
460
|
+
groupingExpression: null,
|
|
461
|
+
params: { $where1: "57152d30-5dcb-11e8-90b6-c6e140253257" },
|
|
462
|
+
query: {
|
|
463
|
+
"q/from": "4e4d5bf1-46ed-434e-b259-2bcfe549d649",
|
|
464
|
+
"q/where": [
|
|
465
|
+
"!=",
|
|
466
|
+
["e83ba957-7466-4756-8e10-c4e6d6545160", "b0a9b18d-97d6-44f8-8286-837b2b104538"],
|
|
467
|
+
"$where1",
|
|
468
|
+
],
|
|
469
|
+
},
|
|
470
|
+
units: [{ checked: true, type: "title" }],
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
filter: null,
|
|
474
|
+
groupBy: { 1: { expression: ["SoftDev/feature", "fibery/id"] } },
|
|
475
|
+
groupingExpression: null,
|
|
476
|
+
params: { $where1: "57121ff0-5dcb-11e8-90b6-c6e140253257" },
|
|
477
|
+
query: { "q/from": "SoftDev/User~Story", "q/where": ["!=", ["workflow/state", "fibery/id"], "$where1"] },
|
|
478
|
+
units: [{ checked: true, type: "title" }],
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
filter: null,
|
|
482
|
+
groupBy: { 2: { expression: ["user/user-story", "fibery/id"] } },
|
|
483
|
+
groupingExpression: null,
|
|
484
|
+
params: { $where1: "57183a70-5dcb-11e8-90b6-c6e140253257" },
|
|
485
|
+
query: { "q/from": "SoftDev/bug", "q/where": ["!=", ["workflow/state", "fibery/id"], "$where1"] },
|
|
486
|
+
units: [{ checked: true, type: "title" }],
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
filter: null,
|
|
490
|
+
groupBy: { 0: { expression: ["user/Product Area", "fibery/id"] } },
|
|
491
|
+
groupingExpression: null,
|
|
492
|
+
params: { $where1: "a69b8160-7a0e-11e8-b84d-f7687e358899" },
|
|
493
|
+
query: {
|
|
494
|
+
"q/from": "c602a620-6afb-11eb-8427-a3a4ebfd9325",
|
|
495
|
+
"q/where": [
|
|
496
|
+
"!=",
|
|
497
|
+
["c602a62c-6afb-11eb-8427-a3a4ebfd9325", "c602a641-6afb-11eb-8427-a3a4ebfd9325"],
|
|
498
|
+
"$where1",
|
|
499
|
+
],
|
|
500
|
+
},
|
|
501
|
+
units: [{ checked: true, type: "title" }],
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
filter: null,
|
|
505
|
+
groupBy: { 0: { expression: ["user/Product Area", "fibery/id"] } },
|
|
506
|
+
groupingExpression: null,
|
|
507
|
+
params: { $where1: ["29deb6e0-cfea-11ea-b6ad-b5f5164e7b4f", "3566c780-a3bf-11e9-99da-9a8397fb9a17"] },
|
|
508
|
+
query: {
|
|
509
|
+
"q/from": "Customer Success/Insight",
|
|
510
|
+
"q/where": ["q/not-in", ["workflow/state", "fibery/id"], "$where1"],
|
|
511
|
+
},
|
|
512
|
+
units: [{ checked: true, type: "title" }],
|
|
513
|
+
},
|
|
514
|
+
],
|
|
515
|
+
},
|
|
516
|
+
"fibery/creation-date": "2021-04-22T16:15:02.787Z",
|
|
517
|
+
"fibery/container-entity-id": "",
|
|
518
|
+
},
|
|
519
|
+
},
|
|
520
|
+
];
|