@projectcaluma/ember-testing 11.0.0-beta.37 → 11.0.0-beta.38

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.
@@ -112,6 +112,7 @@ type AnalyticsField implements Node {
112
112
  filters: [String]
113
113
  function: AggregateFunction
114
114
  showOutput: Boolean!
115
+ sort: Int!
115
116
  }
116
117
 
117
118
  type AnalyticsFieldConnection {
@@ -549,6 +550,11 @@ type Case implements Node {
549
550
  """
550
551
  id: ID!
551
552
 
553
+ """
554
+ Family id which case belongs to.
555
+ """
556
+ family: Case
557
+
552
558
  """
553
559
  Time when case has either been canceled or completed
554
560
  """
@@ -627,6 +633,7 @@ input CaseFilterSetType {
627
633
  rootCase: ID
628
634
  searchAnswers: [SearchAnswersFilterType]
629
635
  status: [CaseStatusArgument]
636
+ excludeChildCases: Boolean
630
637
  invert: Boolean
631
638
  }
632
639
 
@@ -1251,6 +1258,10 @@ type DynamicChoiceQuestion implements Question & DynamicQuestion & Node {
1251
1258
  order: [FormOrderSetType]
1252
1259
  ): FormConnection
1253
1260
  options(
1261
+ """
1262
+ JSON object passed as context to the data source
1263
+ """
1264
+ context: JSONString
1254
1265
  before: String
1255
1266
  after: String
1256
1267
  first: Int
@@ -1294,6 +1305,10 @@ type DynamicMultipleChoiceQuestion implements Question & DynamicQuestion & Node
1294
1305
  order: [FormOrderSetType]
1295
1306
  ): FormConnection
1296
1307
  options(
1308
+ """
1309
+ JSON object passed as context to the data source
1310
+ """
1311
+ context: JSONString
1297
1312
  before: String
1298
1313
  after: String
1299
1314
  first: Int
@@ -1367,6 +1382,10 @@ input DynamicOptionOrderSetType {
1367
1382
 
1368
1383
  interface DynamicQuestion {
1369
1384
  options(
1385
+ """
1386
+ JSON object passed as context to the data source
1387
+ """
1388
+ context: JSONString
1370
1389
  before: String
1371
1390
  after: String
1372
1391
  first: Int
@@ -1940,6 +1959,9 @@ type Mutation {
1940
1959
  removeAnalyticsField(
1941
1960
  input: RemoveAnalyticsFieldInput!
1942
1961
  ): RemoveAnalyticsFieldPayload
1962
+ reorderAnalyticsFields(
1963
+ input: ReorderAnalyticsFieldsInput!
1964
+ ): ReorderAnalyticsFieldsPayload
1943
1965
  saveWorkflow(input: SaveWorkflowInput!): SaveWorkflowPayload
1944
1966
  addWorkflowFlow(input: AddWorkflowFlowInput!): AddWorkflowFlowPayload
1945
1967
  removeFlow(input: RemoveFlowInput!): RemoveFlowPayload
@@ -2190,6 +2212,16 @@ type Query {
2190
2212
  ): DataSourceConnection
2191
2213
  dataSource(
2192
2214
  name: String!
2215
+
2216
+ """
2217
+ Slug of the question passed as context to the data source
2218
+ """
2219
+ question: String
2220
+
2221
+ """
2222
+ JSON object passed as context to the data source
2223
+ """
2224
+ context: JSONString
2193
2225
  before: String
2194
2226
  after: String
2195
2227
  first: Int
@@ -2366,6 +2398,7 @@ input QuestionFilterSetType {
2366
2398
  excludeForms: [ID]
2367
2399
  search: String
2368
2400
  slugs: [String]
2401
+ visibleInDocument: ID
2369
2402
  invert: Boolean
2370
2403
  }
2371
2404
 
@@ -2500,6 +2533,17 @@ type ReopenCasePayload {
2500
2533
  clientMutationId: String
2501
2534
  }
2502
2535
 
2536
+ input ReorderAnalyticsFieldsInput {
2537
+ table: ID!
2538
+ fields: [ID]!
2539
+ clientMutationId: String
2540
+ }
2541
+
2542
+ type ReorderAnalyticsFieldsPayload {
2543
+ analyticsTable: AnalyticsTable
2544
+ clientMutationId: String
2545
+ }
2546
+
2503
2547
  input ReorderFormQuestionsInput {
2504
2548
  form: ID!
2505
2549
  questions: [ID]!
@@ -2834,6 +2878,11 @@ input SaveDocumentDateAnswerInput {
2834
2878
  document: ID!
2835
2879
  meta: JSONString
2836
2880
  value: Date
2881
+
2882
+ """
2883
+ JSON object passed as context to the data source of dynamic questions
2884
+ """
2885
+ dataSourceContext: JSONString
2837
2886
  clientMutationId: String
2838
2887
  }
2839
2888
 
@@ -2847,6 +2896,11 @@ input SaveDocumentFilesAnswerInput {
2847
2896
  question: ID!
2848
2897
  document: ID!
2849
2898
  meta: JSONString
2899
+
2900
+ """
2901
+ JSON object passed as context to the data source of dynamic questions
2902
+ """
2903
+ dataSourceContext: JSONString
2850
2904
  clientMutationId: String
2851
2905
  }
2852
2906
 
@@ -2860,6 +2914,11 @@ input SaveDocumentFloatAnswerInput {
2860
2914
  document: ID!
2861
2915
  meta: JSONString
2862
2916
  value: Float
2917
+
2918
+ """
2919
+ JSON object passed as context to the data source of dynamic questions
2920
+ """
2921
+ dataSourceContext: JSONString
2863
2922
  clientMutationId: String
2864
2923
  }
2865
2924
 
@@ -2880,6 +2939,11 @@ input SaveDocumentIntegerAnswerInput {
2880
2939
  document: ID!
2881
2940
  meta: JSONString
2882
2941
  value: Int
2942
+
2943
+ """
2944
+ JSON object passed as context to the data source of dynamic questions
2945
+ """
2946
+ dataSourceContext: JSONString
2883
2947
  clientMutationId: String
2884
2948
  }
2885
2949
 
@@ -2893,6 +2957,11 @@ input SaveDocumentListAnswerInput {
2893
2957
  document: ID!
2894
2958
  meta: JSONString
2895
2959
  value: [String]
2960
+
2961
+ """
2962
+ JSON object passed as context to the data source of dynamic questions
2963
+ """
2964
+ dataSourceContext: JSONString
2896
2965
  clientMutationId: String
2897
2966
  }
2898
2967
 
@@ -2911,6 +2980,11 @@ input SaveDocumentStringAnswerInput {
2911
2980
  document: ID!
2912
2981
  meta: JSONString
2913
2982
  value: String
2983
+
2984
+ """
2985
+ JSON object passed as context to the data source of dynamic questions
2986
+ """
2987
+ dataSourceContext: JSONString
2914
2988
  clientMutationId: String
2915
2989
  }
2916
2990
 
@@ -2928,6 +3002,11 @@ input SaveDocumentTableAnswerInput {
2928
3002
  List of document IDs representing the rows in the table.
2929
3003
  """
2930
3004
  value: [ID]
3005
+
3006
+ """
3007
+ JSON object passed as context to the data source of dynamic questions
3008
+ """
3009
+ dataSourceContext: JSONString
2931
3010
  clientMutationId: String
2932
3011
  }
2933
3012
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@projectcaluma/ember-testing",
3
- "version": "11.0.0-beta.37",
3
+ "version": "11.0.0-beta.38",
4
4
  "description": "Ember addon for testing with Caluma addons.",
5
5
  "keywords": [
6
6
  "ember-addon"