@projectcaluma/ember-testing 12.15.4 → 13.0.0-beta.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.
|
@@ -216,6 +216,7 @@ type AnalyticsTable implements Node {
|
|
|
216
216
|
meta: JSONString!
|
|
217
217
|
disableVisibilities: Boolean!
|
|
218
218
|
name: String!
|
|
219
|
+
description: String
|
|
219
220
|
startingObject: StartingObject
|
|
220
221
|
fields(
|
|
221
222
|
offset: Int
|
|
@@ -298,6 +299,7 @@ type AnalyticsTableEdge {
|
|
|
298
299
|
input AnalyticsTableFilterSetType {
|
|
299
300
|
slug: String
|
|
300
301
|
name: String
|
|
302
|
+
description: String
|
|
301
303
|
createdByUser: String
|
|
302
304
|
createdByGroup: String
|
|
303
305
|
modifiedByUser: String
|
|
@@ -633,7 +635,6 @@ input CaseFilterSetType {
|
|
|
633
635
|
modifiedAfter: DateTime
|
|
634
636
|
metaHasKey: String
|
|
635
637
|
metaValue: [JSONValueFilterType]
|
|
636
|
-
id: ID
|
|
637
638
|
ids: [ID]
|
|
638
639
|
documentForm: String
|
|
639
640
|
documentForms: [String]
|
|
@@ -1032,6 +1033,31 @@ type DjangoDebug {
|
|
|
1032
1033
|
Executed SQL queries for this API query.
|
|
1033
1034
|
"""
|
|
1034
1035
|
sql: [DjangoDebugSQL]
|
|
1036
|
+
|
|
1037
|
+
"""
|
|
1038
|
+
Raise exceptions for this API query.
|
|
1039
|
+
"""
|
|
1040
|
+
exceptions: [DjangoDebugException]
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
"""
|
|
1044
|
+
Represents a single exception raised.
|
|
1045
|
+
"""
|
|
1046
|
+
type DjangoDebugException {
|
|
1047
|
+
"""
|
|
1048
|
+
The class of the exception
|
|
1049
|
+
"""
|
|
1050
|
+
excType: String!
|
|
1051
|
+
|
|
1052
|
+
"""
|
|
1053
|
+
The message of the exception
|
|
1054
|
+
"""
|
|
1055
|
+
message: String!
|
|
1056
|
+
|
|
1057
|
+
"""
|
|
1058
|
+
The stack trace
|
|
1059
|
+
"""
|
|
1060
|
+
stack: String!
|
|
1035
1061
|
}
|
|
1036
1062
|
|
|
1037
1063
|
"""
|
|
@@ -2111,6 +2137,7 @@ type Option implements Node {
|
|
|
2111
2137
|
modifiedByGroup: String
|
|
2112
2138
|
slug: String!
|
|
2113
2139
|
label: String!
|
|
2140
|
+
isHidden: String!
|
|
2114
2141
|
isArchived: Boolean!
|
|
2115
2142
|
meta: GenericScalar
|
|
2116
2143
|
|
|
@@ -2168,6 +2195,7 @@ input OptionFilterSetType {
|
|
|
2168
2195
|
metaHasKey: String
|
|
2169
2196
|
metaValue: [JSONValueFilterType]
|
|
2170
2197
|
search: String
|
|
2198
|
+
visibleInDocument: ID
|
|
2171
2199
|
invert: Boolean
|
|
2172
2200
|
}
|
|
2173
2201
|
|
|
@@ -2668,6 +2696,7 @@ type SaveAnalyticsFieldPayload {
|
|
|
2668
2696
|
input SaveAnalyticsTableInput {
|
|
2669
2697
|
slug: String!
|
|
2670
2698
|
name: String!
|
|
2699
|
+
description: String
|
|
2671
2700
|
startingObject: StartingObject!
|
|
2672
2701
|
disableVisibilities: Boolean
|
|
2673
2702
|
meta: JSONString
|
|
@@ -3406,7 +3435,7 @@ Lookup type to search in answers.
|
|
|
3406
3435
|
You may pass in a list of question slugs and/or a list of form slugs to define
|
|
3407
3436
|
which answers to search. If you pass in one or more forms, answers to the
|
|
3408
3437
|
questions in that form will be searched. If you pass in one or more question
|
|
3409
|
-
|
|
3438
|
+
slugs, the corresponding answers are searched. If you pass both, a superset
|
|
3410
3439
|
of both is searched (ie. they do not limit each other).
|
|
3411
3440
|
"""
|
|
3412
3441
|
input SearchAnswersFilterType {
|
|
@@ -3416,10 +3445,17 @@ input SearchAnswersFilterType {
|
|
|
3416
3445
|
lookup: SearchLookupMode
|
|
3417
3446
|
}
|
|
3418
3447
|
|
|
3448
|
+
"""
|
|
3449
|
+
Lookup used in SearchAnswersFilterType.
|
|
3450
|
+
|
|
3451
|
+
Keep in mind that the SearchAnswer filter operates on a word-by-word basis.
|
|
3452
|
+
This defines the lookup used for every single word.
|
|
3453
|
+
"""
|
|
3419
3454
|
enum SearchLookupMode {
|
|
3420
3455
|
STARTSWITH
|
|
3421
3456
|
CONTAINS
|
|
3422
3457
|
TEXT
|
|
3458
|
+
EXACT_WORD
|
|
3423
3459
|
}
|
|
3424
3460
|
|
|
3425
3461
|
type SelectedOption {
|
|
@@ -3509,6 +3545,7 @@ enum SortableAnalyticsTableAttributes {
|
|
|
3509
3545
|
MODIFIED_AT
|
|
3510
3546
|
SLUG
|
|
3511
3547
|
NAME
|
|
3548
|
+
DESCRIPTION
|
|
3512
3549
|
}
|
|
3513
3550
|
|
|
3514
3551
|
enum SortableAnswerAttributes {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectcaluma/ember-testing",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0-beta.1",
|
|
4
4
|
"description": "Ember addon for testing with Caluma addons.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -9,19 +9,19 @@
|
|
|
9
9
|
"homepage": "https://docs.caluma.io/ember-caluma",
|
|
10
10
|
"repository": "github:projectcaluma/ember-caluma",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@babel/core": "^7.
|
|
13
|
-
"@ember/string": "^
|
|
12
|
+
"@babel/core": "^7.25.2",
|
|
13
|
+
"@ember/string": "^4.0.0",
|
|
14
14
|
"@faker-js/faker": "^8.4.1",
|
|
15
15
|
"broccoli-funnel": "^3.0.8",
|
|
16
16
|
"broccoli-merge-trees": "^4.2.0",
|
|
17
17
|
"ember-apollo-client": "~4.0.2",
|
|
18
|
-
"ember-auto-import": "^2.7.
|
|
18
|
+
"ember-auto-import": "^2.7.4",
|
|
19
19
|
"ember-cli-babel": "^8.2.0",
|
|
20
20
|
"ember-cli-htmlbars": "^6.3.0",
|
|
21
21
|
"ember-cli-mirage": "^3.0.3",
|
|
22
22
|
"ember-fetch": "^8.1.2",
|
|
23
23
|
"ember-inflector": "^4.0.2",
|
|
24
|
-
"graphql": "^15.
|
|
24
|
+
"graphql": "^15.9.0",
|
|
25
25
|
"graphql-iso-date": "^3.6.1",
|
|
26
26
|
"graphql-tools": "^4.0.8",
|
|
27
27
|
"luxon": "^3.4.4",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@ember/optional-features": "2.1.0",
|
|
32
|
-
"@ember/test-helpers": "3.3.
|
|
32
|
+
"@ember/test-helpers": "3.3.1",
|
|
33
33
|
"@embroider/test-setup": "4.0.0",
|
|
34
34
|
"@glimmer/component": "1.1.2",
|
|
35
35
|
"broccoli-asset-rev": "3.0.0",
|
|
36
|
-
"ember-cli": "5.
|
|
36
|
+
"ember-cli": "5.10.0",
|
|
37
37
|
"ember-cli-clean-css": "3.0.0",
|
|
38
38
|
"ember-cli-code-coverage": "3.0.0",
|
|
39
39
|
"ember-cli-dependency-checker": "3.3.2",
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
"ember-cli-sri": "2.1.1",
|
|
42
42
|
"ember-cli-terser": "4.0.2",
|
|
43
43
|
"ember-load-initializers": "2.1.2",
|
|
44
|
-
"ember-qunit": "8.0
|
|
45
|
-
"ember-resolver": "
|
|
46
|
-
"ember-source": "5.
|
|
44
|
+
"ember-qunit": "8.1.0",
|
|
45
|
+
"ember-resolver": "12.0.1",
|
|
46
|
+
"ember-source": "5.10.1",
|
|
47
47
|
"ember-source-channel-url": "3.0.0",
|
|
48
48
|
"ember-try": "3.0.0",
|
|
49
49
|
"graphql-tag": "2.12.6",
|
|
50
50
|
"loader.js": "4.7.0",
|
|
51
|
-
"qunit": "2.
|
|
52
|
-
"qunit-dom": "3.
|
|
53
|
-
"webpack": "5.
|
|
51
|
+
"qunit": "2.21.1",
|
|
52
|
+
"qunit-dom": "3.2.0",
|
|
53
|
+
"webpack": "5.93.0"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"ember-source": "
|
|
56
|
+
"ember-source": ">= 4.0.0"
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">= 18"
|