@projectcaluma/ember-distribution 1.0.0-beta.12 → 1.0.0-beta.13
Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
# [@projectcaluma/ember-distribution-v1.0.0-beta.13](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-distribution-v1.0.0-beta.12...@projectcaluma/ember-distribution-v1.0.0-beta.13) (2022-06-09)
|
2
|
+
|
3
|
+
|
4
|
+
### Features
|
5
|
+
|
6
|
+
* **caluma:** use new filter syntax of caluma ([7a00c03](https://github.com/projectcaluma/ember-caluma/commit/7a00c03a103933d9e48dd88adb7382441a298742))
|
7
|
+
|
8
|
+
|
9
|
+
### BREAKING CHANGES
|
10
|
+
|
11
|
+
* **caluma:** `ember-caluma` now requires Caluma version >=
|
12
|
+
8.0.0-beta.6
|
13
|
+
|
1
14
|
# [@projectcaluma/ember-distribution-v1.0.0-beta.12](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-distribution-v1.0.0-beta.11...@projectcaluma/ember-distribution-v1.0.0-beta.12) (2022-06-09)
|
2
15
|
|
3
16
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
fragment InquiryAnswerButtons on Case {
|
2
|
-
workItems(tasks: $buttonTasks, status: READY) {
|
2
|
+
workItems(filter: [{ tasks: $buttonTasks }, { status: READY }]) {
|
3
3
|
edges {
|
4
4
|
node {
|
5
5
|
id
|
@@ -15,7 +15,7 @@ fragment InquiryAnswerButtons on Case {
|
|
15
15
|
|
16
16
|
fragment InquiryDeadlineDocument on Document {
|
17
17
|
id
|
18
|
-
deadline: answers(question: $deadlineQuestion) {
|
18
|
+
deadline: answers(filter: [{ question: $deadlineQuestion }]) {
|
19
19
|
edges {
|
20
20
|
node {
|
21
21
|
id
|
@@ -29,7 +29,7 @@ fragment InquiryDeadlineDocument on Document {
|
|
29
29
|
|
30
30
|
fragment InquiryStatusDocument on Document {
|
31
31
|
id
|
32
|
-
status: answers(question: $statusQuestion) {
|
32
|
+
status: answers(filter: [{ question: $statusQuestion }]) {
|
33
33
|
edges {
|
34
34
|
node {
|
35
35
|
id
|
@@ -48,7 +48,7 @@ fragment InquiryStatusDocument on Document {
|
|
48
48
|
fragment InquiryRequest on Document {
|
49
49
|
id
|
50
50
|
...InquiryDeadlineDocument
|
51
|
-
info: answers(question: $infoQuestion) {
|
51
|
+
info: answers(filter: [{ question: $infoQuestion }]) {
|
52
52
|
edges {
|
53
53
|
node {
|
54
54
|
id
|
@@ -79,7 +79,7 @@ fragment InquiryDialog on WorkItem {
|
|
79
79
|
...InquiryAnswerButtons
|
80
80
|
document {
|
81
81
|
...InquiryStatusDocument
|
82
|
-
info: answers(questions: $answerInfoQuestions) {
|
82
|
+
info: answers(filter: [{ questions: $answerInfoQuestions }]) {
|
83
83
|
edges {
|
84
84
|
node {
|
85
85
|
id
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@projectcaluma/ember-distribution",
|
3
|
-
"version": "1.0.0-beta.
|
3
|
+
"version": "1.0.0-beta.13",
|
4
4
|
"description": "Ember engine for the Caluma distribution module.",
|
5
5
|
"keywords": [
|
6
6
|
"ember-addon",
|
@@ -23,7 +23,7 @@
|
|
23
23
|
"@glimmer/component": "^1.1.2",
|
24
24
|
"@glimmer/tracking": "^1.1.2",
|
25
25
|
"@projectcaluma/ember-core": "^11.0.0-beta.7",
|
26
|
-
"@projectcaluma/ember-form": "^11.0.0-beta.
|
26
|
+
"@projectcaluma/ember-form": "^11.0.0-beta.21",
|
27
27
|
"@projectcaluma/ember-workflow": "^11.0.0-beta.7",
|
28
28
|
"ember-apollo-client": "^4.0.2",
|
29
29
|
"ember-auto-import": "^2.4.2",
|
@@ -50,7 +50,7 @@
|
|
50
50
|
"@ember/test-helpers": "2.8.1",
|
51
51
|
"@embroider/test-setup": "1.7.1",
|
52
52
|
"@faker-js/faker": "7.2.0",
|
53
|
-
"@projectcaluma/ember-testing": "11.0.0-beta.
|
53
|
+
"@projectcaluma/ember-testing": "11.0.0-beta.9",
|
54
54
|
"broccoli-asset-rev": "3.0.0",
|
55
55
|
"ember-cli": "3.28.5",
|
56
56
|
"ember-cli-code-coverage": "1.0.3",
|