@longvansoftware/storefront-js-client 4.3.7-beta.1 → 4.3.7

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.
Files changed (38) hide show
  1. package/README.md +221 -221
  2. package/dist/src/graphql/auth/mutations.js +309 -309
  3. package/dist/src/graphql/auth/queries.js +209 -209
  4. package/dist/src/graphql/campaign/mutations.js +26 -26
  5. package/dist/src/graphql/campaign/queries.js +457 -457
  6. package/dist/src/graphql/cashbook/queries.js +93 -93
  7. package/dist/src/graphql/cloud/mutations.js +103 -103
  8. package/dist/src/graphql/cloud/queries.js +112 -112
  9. package/dist/src/graphql/cloudCloud/mutations.js +12 -12
  10. package/dist/src/graphql/cloudCloud/queries.js +117 -117
  11. package/dist/src/graphql/cloudService/queries.d.ts +1 -0
  12. package/dist/src/graphql/cloudService/queries.js +71 -0
  13. package/dist/src/graphql/computing/mutations.js +96 -96
  14. package/dist/src/graphql/computing/queries.js +41 -41
  15. package/dist/src/graphql/crm/mutations.js +1064 -1064
  16. package/dist/src/graphql/crm/queries.js +920 -920
  17. package/dist/src/graphql/orderCloud/mutations.js +7 -7
  18. package/dist/src/graphql/orderCloud/queries.js +7 -7
  19. package/dist/src/graphql/payment/mutations.js +194 -194
  20. package/dist/src/graphql/payment/queries.js +117 -117
  21. package/dist/src/graphql/paymentV2/mutations.js +115 -115
  22. package/dist/src/graphql/paymentV2/queries.js +263 -263
  23. package/dist/src/graphql/product/mutations.js +652 -652
  24. package/dist/src/graphql/product/queries.js +990 -989
  25. package/dist/src/graphql/service/mutations.js +304 -304
  26. package/dist/src/graphql/service/queries.js +131 -131
  27. package/dist/src/graphql/store/mutations.js +24 -24
  28. package/dist/src/graphql/store/queries.js +24 -24
  29. package/dist/src/graphql/user/mutations.js +201 -201
  30. package/dist/src/graphql/user/queries.js +339 -339
  31. package/dist/src/lib/cloudService/index.d.ts +5 -0
  32. package/dist/src/lib/cloudService/index.js +35 -0
  33. package/dist/src/lib/order/index.d.ts +0 -9
  34. package/dist/src/lib/order/index.js +0 -21
  35. package/dist/src/lib/serviceSDK.js +14 -14
  36. package/package.json +43 -43
  37. package/dist/index.d.ts +0 -1698
  38. package/dist/index.js +0 -13673
@@ -2,1087 +2,1087 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.CREATE_ORG_MUTATION = exports.CREATE_WORK_EFFORT_V2 = exports.ADD_TOPIC_RELATED_RESOURCE = exports.CREATE_TOPIC = exports.CLOSE_TOPIC = exports.REMOVE_TAG = exports.UPDATE_CONNECTOR_DESCRIPTION = exports.ADD_TAG = exports.CREATE_CONNECTOR = exports.UPDATE_WORK_EFFORT_PROCESS_STATUS = exports.CREATE_WORK_EFFORT = exports.ADD_COMMENT = exports.ADD_TICKED = exports.ADD_ATTACHMENT_FOR_WORK_EFFORT = exports.UPDATE_WORK_EFFORT_STATUS = exports.UPDATE_WORK_EFFORT_NAME = exports.UPDATE_WORK_EFFORT_DESCRIPTION = exports.UPDATE_STATUS_ATTACHMENT_BY_ID = exports.ADD_OPPORTUNITY_MUTATION_V2 = exports.ADD_OPPORTUNITY_MUTATION = void 0;
4
4
  const graphql_tag_1 = require("graphql-tag");
5
- exports.ADD_OPPORTUNITY_MUTATION = (0, graphql_tag_1.gql) `
6
- mutation AddOpportunity(
7
- $partyId: String!
8
- $addOpportunityRequest: AddOpportunityRequest
9
- $performerId: String!
10
- ) {
11
- addOpportunity(
12
- partyId: $partyId
13
- addOpportunityRequest: $addOpportunityRequest
14
- performerId: $performerId
15
- ) {
16
- goal
17
- campaignId
18
- valueReal
19
- valueExpect
20
- successRate
21
- referName
22
- referPhone
23
- referEmail
24
- id
25
- createdBy
26
- ownerId
27
- workEffortTypeId
28
- partyId
29
- name
30
- description
31
- parentId
32
- status
33
- stmId
34
- createdStamp
35
- updatedStamp
36
- endDateExpect
37
- priorityName
38
- targetId
39
- targetType
40
- targetUrl
41
- extSource
42
- connectorId
43
- processResult
44
- }
45
- }
5
+ exports.ADD_OPPORTUNITY_MUTATION = (0, graphql_tag_1.gql) `
6
+ mutation AddOpportunity(
7
+ $partyId: String!
8
+ $addOpportunityRequest: AddOpportunityRequest
9
+ $performerId: String!
10
+ ) {
11
+ addOpportunity(
12
+ partyId: $partyId
13
+ addOpportunityRequest: $addOpportunityRequest
14
+ performerId: $performerId
15
+ ) {
16
+ goal
17
+ campaignId
18
+ valueReal
19
+ valueExpect
20
+ successRate
21
+ referName
22
+ referPhone
23
+ referEmail
24
+ id
25
+ createdBy
26
+ ownerId
27
+ workEffortTypeId
28
+ partyId
29
+ name
30
+ description
31
+ parentId
32
+ status
33
+ stmId
34
+ createdStamp
35
+ updatedStamp
36
+ endDateExpect
37
+ priorityName
38
+ targetId
39
+ targetType
40
+ targetUrl
41
+ extSource
42
+ connectorId
43
+ processResult
44
+ }
45
+ }
46
46
  `;
47
- exports.ADD_OPPORTUNITY_MUTATION_V2 = (0, graphql_tag_1.gql) `
48
- mutation AddOpportunity(
49
- $partyId: String!
50
- $addOpportunityRequest: AddOpportunityRequest
51
- $performerId: String!
52
- ) {
53
- addOpportunity(
54
- partyId: $partyId
55
- addOpportunityRequest: $addOpportunityRequest
56
- performerId: $performerId
57
- ) {
58
- goal
59
- campaignId
60
- valueReal
61
- valueExpect
62
- successRate
63
- referName
64
- referPhone
65
- referEmail
66
- id
67
- createdBy
68
- ownerId
69
- workEffortTypeId
70
- partyId
71
- name
72
- description
73
- parentId
74
- status
75
- stmId
76
- createdStamp
77
- updatedStamp
78
- endDateExpect
79
- priorityName
80
- targetId
81
- targetType
82
- targetUrl
83
- extSource
84
- connectorId
85
- processResult
86
- }
87
- }
47
+ exports.ADD_OPPORTUNITY_MUTATION_V2 = (0, graphql_tag_1.gql) `
48
+ mutation AddOpportunity(
49
+ $partyId: String!
50
+ $addOpportunityRequest: AddOpportunityRequest
51
+ $performerId: String!
52
+ ) {
53
+ addOpportunity(
54
+ partyId: $partyId
55
+ addOpportunityRequest: $addOpportunityRequest
56
+ performerId: $performerId
57
+ ) {
58
+ goal
59
+ campaignId
60
+ valueReal
61
+ valueExpect
62
+ successRate
63
+ referName
64
+ referPhone
65
+ referEmail
66
+ id
67
+ createdBy
68
+ ownerId
69
+ workEffortTypeId
70
+ partyId
71
+ name
72
+ description
73
+ parentId
74
+ status
75
+ stmId
76
+ createdStamp
77
+ updatedStamp
78
+ endDateExpect
79
+ priorityName
80
+ targetId
81
+ targetType
82
+ targetUrl
83
+ extSource
84
+ connectorId
85
+ processResult
86
+ }
87
+ }
88
88
  `;
89
- exports.UPDATE_STATUS_ATTACHMENT_BY_ID = (0, graphql_tag_1.gql) `
90
- mutation UpdateStatusAttachmentById(
91
- $performerId: String!
92
- $attachmentId: String!
93
- $status: AttachmentStatus!
94
- ) {
95
- updateStatusAttachmentById(
96
- performerId: $performerId
97
- attachmentId: $attachmentId
98
- status: $status
99
- ) {
100
- id
101
- createdStamp
102
- updatedStamp
103
- updatedBy
104
- createdBy
105
- partyId
106
- path
107
- srcId
108
- srcName
109
- srcPath
110
- srcConfigPathId
111
- name
112
- fileType
113
- type
114
- status
115
- referId
116
- }
117
- }
89
+ exports.UPDATE_STATUS_ATTACHMENT_BY_ID = (0, graphql_tag_1.gql) `
90
+ mutation UpdateStatusAttachmentById(
91
+ $performerId: String!
92
+ $attachmentId: String!
93
+ $status: AttachmentStatus!
94
+ ) {
95
+ updateStatusAttachmentById(
96
+ performerId: $performerId
97
+ attachmentId: $attachmentId
98
+ status: $status
99
+ ) {
100
+ id
101
+ createdStamp
102
+ updatedStamp
103
+ updatedBy
104
+ createdBy
105
+ partyId
106
+ path
107
+ srcId
108
+ srcName
109
+ srcPath
110
+ srcConfigPathId
111
+ name
112
+ fileType
113
+ type
114
+ status
115
+ referId
116
+ }
117
+ }
118
118
  `;
119
- exports.UPDATE_WORK_EFFORT_DESCRIPTION = (0, graphql_tag_1.gql) `
120
- mutation UpdateWorkEffortDescription(
121
- $performerId: String!
122
- $workEffortId: String!
123
- $description: String!
124
- ) {
125
- updateWorkEffortDescription(
126
- performerId: $performerId
127
- workEffortId: $workEffortId
128
- description: $description
129
- ) {
130
- id
131
- createdStamp
132
- updatedStamp
133
- createdBy
134
- updatedBy
135
- name
136
- partyId
137
- targetId
138
- targetType
139
- targetUrl
140
- description
141
- status
142
- parentId
143
- workEffortTypeId
144
- stmId
145
- workflowId
146
- endDateExpect
147
- endDateActual
148
- startDateActual
149
- startDateExpect
150
- source
151
- owner {
152
- id
153
- fullName
154
- name
155
- type
156
- phone
157
- email
158
- }
159
- priorityName
160
- priorityValue
161
- connectorId
162
- mode
163
- partyGroupIds
164
- tagIds
165
- processResult
166
- }
167
- }
119
+ exports.UPDATE_WORK_EFFORT_DESCRIPTION = (0, graphql_tag_1.gql) `
120
+ mutation UpdateWorkEffortDescription(
121
+ $performerId: String!
122
+ $workEffortId: String!
123
+ $description: String!
124
+ ) {
125
+ updateWorkEffortDescription(
126
+ performerId: $performerId
127
+ workEffortId: $workEffortId
128
+ description: $description
129
+ ) {
130
+ id
131
+ createdStamp
132
+ updatedStamp
133
+ createdBy
134
+ updatedBy
135
+ name
136
+ partyId
137
+ targetId
138
+ targetType
139
+ targetUrl
140
+ description
141
+ status
142
+ parentId
143
+ workEffortTypeId
144
+ stmId
145
+ workflowId
146
+ endDateExpect
147
+ endDateActual
148
+ startDateActual
149
+ startDateExpect
150
+ source
151
+ owner {
152
+ id
153
+ fullName
154
+ name
155
+ type
156
+ phone
157
+ email
158
+ }
159
+ priorityName
160
+ priorityValue
161
+ connectorId
162
+ mode
163
+ partyGroupIds
164
+ tagIds
165
+ processResult
166
+ }
167
+ }
168
168
  `;
169
- exports.UPDATE_WORK_EFFORT_NAME = (0, graphql_tag_1.gql) `
170
- mutation UpdateWorkEffortName(
171
- $partyId: String!
172
- $performerId: String!
173
- $workEffortId: String!
174
- $newName: String!
175
- ) {
176
- updateWorkEffortName(
177
- partyId: $partyId
178
- performerId: $performerId
179
- workEffortId: $workEffortId
180
- newName: $newName
181
- ) {
182
- id
183
- createdStamp
184
- updatedStamp
185
- createdBy
186
- updatedBy
187
- name
188
- partyId
189
- targetId
190
- targetType
191
- targetUrl
192
- description
193
- status
194
- parentId
195
- workEffortTypeId
196
- stmId
197
- workflowId
198
- endDateExpect
199
- endDateActual
200
- startDateActual
201
- startDateExpect
202
- source
203
- owner {
204
- id
205
- fullName
206
- name
207
- type
208
- phone
209
- email
210
- }
211
- priorityName
212
- priorityValue
213
- connectorId
214
- mode
215
- partyGroupIds
216
- tagIds
217
- processResult
218
- processPipeline {
219
- id
220
- name
221
- }
222
- attachments {
223
- id
224
- createdStamp
225
- updatedStamp
226
- updatedBy
227
- createdBy
228
- partyId
229
- path
230
- srcId
231
- srcName
232
- srcPath
233
- srcConfigPathId
234
- name
235
- fileType
236
- type
237
- status
238
- referId
239
- }
240
- subTasks {
241
- id
242
- createdStamp
243
- updatedStamp
244
- createdBy
245
- updatedBy
246
- name
247
- partyId
248
- targetId
249
- targetType
250
- targetUrl
251
- description
252
- status
253
- parentId
254
- workEffortTypeId
255
- stmId
256
- workflowId
257
- endDateExpect
258
- endDateActual
259
- startDateActual
260
- startDateExpect
261
- source
262
- owner {
263
- id
264
- fullName
265
- name
266
- type
267
- phone
268
- email
269
- }
270
- priorityName
271
- priorityValue
272
- connectorId
273
- mode
274
- partyGroupIds
275
- tagIds
276
- processResult
277
- }
278
- actionLink {
279
- name
280
- uri
281
- type
282
- partyId
283
- fromCollection
284
- toCollection
285
- group
286
- params
287
- id
288
- createdStamp
289
- updatedStamp
290
- updatedBy
291
- createdBy
292
- }
293
- }
294
- }
169
+ exports.UPDATE_WORK_EFFORT_NAME = (0, graphql_tag_1.gql) `
170
+ mutation UpdateWorkEffortName(
171
+ $partyId: String!
172
+ $performerId: String!
173
+ $workEffortId: String!
174
+ $newName: String!
175
+ ) {
176
+ updateWorkEffortName(
177
+ partyId: $partyId
178
+ performerId: $performerId
179
+ workEffortId: $workEffortId
180
+ newName: $newName
181
+ ) {
182
+ id
183
+ createdStamp
184
+ updatedStamp
185
+ createdBy
186
+ updatedBy
187
+ name
188
+ partyId
189
+ targetId
190
+ targetType
191
+ targetUrl
192
+ description
193
+ status
194
+ parentId
195
+ workEffortTypeId
196
+ stmId
197
+ workflowId
198
+ endDateExpect
199
+ endDateActual
200
+ startDateActual
201
+ startDateExpect
202
+ source
203
+ owner {
204
+ id
205
+ fullName
206
+ name
207
+ type
208
+ phone
209
+ email
210
+ }
211
+ priorityName
212
+ priorityValue
213
+ connectorId
214
+ mode
215
+ partyGroupIds
216
+ tagIds
217
+ processResult
218
+ processPipeline {
219
+ id
220
+ name
221
+ }
222
+ attachments {
223
+ id
224
+ createdStamp
225
+ updatedStamp
226
+ updatedBy
227
+ createdBy
228
+ partyId
229
+ path
230
+ srcId
231
+ srcName
232
+ srcPath
233
+ srcConfigPathId
234
+ name
235
+ fileType
236
+ type
237
+ status
238
+ referId
239
+ }
240
+ subTasks {
241
+ id
242
+ createdStamp
243
+ updatedStamp
244
+ createdBy
245
+ updatedBy
246
+ name
247
+ partyId
248
+ targetId
249
+ targetType
250
+ targetUrl
251
+ description
252
+ status
253
+ parentId
254
+ workEffortTypeId
255
+ stmId
256
+ workflowId
257
+ endDateExpect
258
+ endDateActual
259
+ startDateActual
260
+ startDateExpect
261
+ source
262
+ owner {
263
+ id
264
+ fullName
265
+ name
266
+ type
267
+ phone
268
+ email
269
+ }
270
+ priorityName
271
+ priorityValue
272
+ connectorId
273
+ mode
274
+ partyGroupIds
275
+ tagIds
276
+ processResult
277
+ }
278
+ actionLink {
279
+ name
280
+ uri
281
+ type
282
+ partyId
283
+ fromCollection
284
+ toCollection
285
+ group
286
+ params
287
+ id
288
+ createdStamp
289
+ updatedStamp
290
+ updatedBy
291
+ createdBy
292
+ }
293
+ }
294
+ }
295
295
  `;
296
- exports.UPDATE_WORK_EFFORT_STATUS = (0, graphql_tag_1.gql) `
297
- mutation UpdateWorkEffortStatus(
298
- $partyId: String!
299
- $performerId: String!
300
- $workEffortId: String!
301
- $group: String
302
- $status: WorkEffortStatus!
303
- ) {
304
- updateWorkEffortStatus(
305
- partyId: $partyId
306
- performerId: $performerId
307
- workEffortId: $workEffortId
308
- group: $group
309
- status: $status
310
- ) {
311
- id
312
- createdStamp
313
- updatedStamp
314
- createdBy
315
- updatedBy
316
- name
317
- partyId
318
- targetId
319
- targetType
320
- targetUrl
321
- description
322
- status
323
- parentId
324
- workEffortTypeId
325
- stmId
326
- workflowId
327
- endDateExpect
328
- endDateActual
329
- startDateActual
330
- startDateExpect
331
- source
332
- priorityName
333
- priorityValue
334
- connectorId
335
- mode
336
- partyGroupIds
337
- tagIds
338
- processResult
339
- processStatus
340
- }
341
- }
296
+ exports.UPDATE_WORK_EFFORT_STATUS = (0, graphql_tag_1.gql) `
297
+ mutation UpdateWorkEffortStatus(
298
+ $partyId: String!
299
+ $performerId: String!
300
+ $workEffortId: String!
301
+ $group: String
302
+ $status: WorkEffortStatus!
303
+ ) {
304
+ updateWorkEffortStatus(
305
+ partyId: $partyId
306
+ performerId: $performerId
307
+ workEffortId: $workEffortId
308
+ group: $group
309
+ status: $status
310
+ ) {
311
+ id
312
+ createdStamp
313
+ updatedStamp
314
+ createdBy
315
+ updatedBy
316
+ name
317
+ partyId
318
+ targetId
319
+ targetType
320
+ targetUrl
321
+ description
322
+ status
323
+ parentId
324
+ workEffortTypeId
325
+ stmId
326
+ workflowId
327
+ endDateExpect
328
+ endDateActual
329
+ startDateActual
330
+ startDateExpect
331
+ source
332
+ priorityName
333
+ priorityValue
334
+ connectorId
335
+ mode
336
+ partyGroupIds
337
+ tagIds
338
+ processResult
339
+ processStatus
340
+ }
341
+ }
342
342
  `;
343
- exports.ADD_ATTACHMENT_FOR_WORK_EFFORT = (0, graphql_tag_1.gql) `
344
- mutation (
345
- $partyId: String!
346
- $performerId: String!
347
- $workEffortId: String!
348
- $addAttachmentRequest: [AddAttachmentRequest]
349
- ) {
350
- addAttachmentForWorkEffort(
351
- partyId: $partyId
352
- performerId: $performerId
353
- workEffortId: $workEffortId
354
- addAttachmentRequest: $addAttachmentRequest
355
- ) {
356
- id
357
- createdStamp
358
- updatedStamp
359
- updatedBy
360
- createdBy
361
- partyId
362
- path
363
- srcId
364
- srcName
365
- srcPath
366
- srcConfigPathId
367
- name
368
- fileType
369
- type
370
- referId
371
- }
372
- }
343
+ exports.ADD_ATTACHMENT_FOR_WORK_EFFORT = (0, graphql_tag_1.gql) `
344
+ mutation (
345
+ $partyId: String!
346
+ $performerId: String!
347
+ $workEffortId: String!
348
+ $addAttachmentRequest: [AddAttachmentRequest]
349
+ ) {
350
+ addAttachmentForWorkEffort(
351
+ partyId: $partyId
352
+ performerId: $performerId
353
+ workEffortId: $workEffortId
354
+ addAttachmentRequest: $addAttachmentRequest
355
+ ) {
356
+ id
357
+ createdStamp
358
+ updatedStamp
359
+ updatedBy
360
+ createdBy
361
+ partyId
362
+ path
363
+ srcId
364
+ srcName
365
+ srcPath
366
+ srcConfigPathId
367
+ name
368
+ fileType
369
+ type
370
+ referId
371
+ }
372
+ }
373
373
  `;
374
- exports.ADD_TICKED = (0, graphql_tag_1.gql) `
375
- mutation AddTicket(
376
- $partyId: String!
377
- $performerId: String!
378
- $addTicketRequest: AddTicketRequest!
379
- $addAttachmentRequest: [AddAttachmentRequest]
380
- ) {
381
- addTicket(
382
- partyId: $partyId
383
- performerId: $performerId
384
- addTicketRequest: $addTicketRequest
385
- addAttachmentRequest: $addAttachmentRequest
386
- ) {
387
- id
388
- partyId
389
- name
390
- description
391
- status
392
- parentId
393
- stmId
394
- createdStamp
395
- updatedStamp
396
- endDateExpect
397
- priorityName
398
- targetId
399
- targetType
400
- extSource
401
- connectorId
402
- }
403
- }
374
+ exports.ADD_TICKED = (0, graphql_tag_1.gql) `
375
+ mutation AddTicket(
376
+ $partyId: String!
377
+ $performerId: String!
378
+ $addTicketRequest: AddTicketRequest!
379
+ $addAttachmentRequest: [AddAttachmentRequest]
380
+ ) {
381
+ addTicket(
382
+ partyId: $partyId
383
+ performerId: $performerId
384
+ addTicketRequest: $addTicketRequest
385
+ addAttachmentRequest: $addAttachmentRequest
386
+ ) {
387
+ id
388
+ partyId
389
+ name
390
+ description
391
+ status
392
+ parentId
393
+ stmId
394
+ createdStamp
395
+ updatedStamp
396
+ endDateExpect
397
+ priorityName
398
+ targetId
399
+ targetType
400
+ extSource
401
+ connectorId
402
+ }
403
+ }
404
404
  `;
405
- exports.ADD_COMMENT = (0, graphql_tag_1.gql) `
406
- mutation AddComment(
407
- $partyId: String!
408
- $performerId: String!
409
- $format: CommentFormat!
410
- $content: String
411
- $referId: String!
412
- $addAttachmentRequest: [AddAttachmentRequest]
413
- ) {
414
- addComment(
415
- partyId: $partyId
416
- performerId: $performerId
417
- format: $format
418
- content: $content
419
- referId: $referId
420
- addAttachmentRequest: $addAttachmentRequest
421
- ) {
422
- id
423
- content
424
- }
425
- }
405
+ exports.ADD_COMMENT = (0, graphql_tag_1.gql) `
406
+ mutation AddComment(
407
+ $partyId: String!
408
+ $performerId: String!
409
+ $format: CommentFormat!
410
+ $content: String
411
+ $referId: String!
412
+ $addAttachmentRequest: [AddAttachmentRequest]
413
+ ) {
414
+ addComment(
415
+ partyId: $partyId
416
+ performerId: $performerId
417
+ format: $format
418
+ content: $content
419
+ referId: $referId
420
+ addAttachmentRequest: $addAttachmentRequest
421
+ ) {
422
+ id
423
+ content
424
+ }
425
+ }
426
426
  `;
427
- exports.CREATE_WORK_EFFORT = (0, graphql_tag_1.gql) `
428
- mutation CreateWorkEffort(
429
- $partnerId: String!
430
- $createdBy: String!
431
- $name: String
432
- $description: String
433
- $workEffortTypeId: String!
434
- $group: String
435
- $attributes: JSON
436
- $addAttachmentRequest: [AddAttachmentRequest]
437
- $parentId: String
438
- ) {
439
- createWorkEffort(
440
- partnerId: $partnerId
441
- createdBy: $createdBy
442
- name: $name
443
- description: $description
444
- workEffortTypeId: $workEffortTypeId
445
- group: $group
446
- attributes: $attributes
447
- addAttachmentRequest: $addAttachmentRequest
448
- parentId: $parentId
449
- ) {
450
- id
451
- createdStamp
452
- updatedStamp
453
- createdBy
454
- updatedBy
455
- name
456
- partyId
457
- targetId
458
- targetType
459
- targetUrl
460
- description
461
- status
462
- parentId
463
- workEffortTypeId
464
- stmId
465
- workflowId
466
- endDateExpect
467
- endDateActual
468
- startDateActual
469
- startDateExpect
470
- source
471
- owner {
472
- id
473
- fullName
474
- name
475
- type
476
- phone
477
- email
478
- }
479
- priorityName
480
- priorityValue
481
- connectorId
482
- mode
483
- partyGroupIds
484
- tagIds
485
- processResult
486
- processStatus
487
- subTasks {
488
- id
489
- createdStamp
490
- updatedStamp
491
- createdBy
492
- updatedBy
493
- name
494
- partyId
495
- targetId
496
- targetType
497
- targetUrl
498
- description
499
- status
500
- parentId
501
- workEffortTypeId
502
- stmId
503
- workflowId
504
- endDateExpect
505
- endDateActual
506
- startDateActual
507
- startDateExpect
508
- source
509
- group
510
- owner {
511
- id
512
- fullName
513
- name
514
- type
515
- phone
516
- email
517
- }
518
- priorityName
519
- priorityValue
520
- connectorId
521
- mode
522
- partyGroupIds
523
- tagIds
524
- processResult
525
- processStatus
526
- processPipeline {
527
- id
528
- name
529
- }
530
- attachments {
531
- id
532
- createdStamp
533
- updatedStamp
534
- updatedBy
535
- createdBy
536
- partyId
537
- path
538
- srcId
539
- srcName
540
- srcPath
541
- srcConfigPathId
542
- name
543
- fileType
544
- type
545
- status
546
- referId
547
- }
548
- subTasks {
549
- id
550
- createdStamp
551
- updatedStamp
552
- createdBy
553
- updatedBy
554
- name
555
- partyId
556
- targetId
557
- targetType
558
- targetUrl
559
- description
560
- status
561
- parentId
562
- workEffortTypeId
563
- stmId
564
- workflowId
565
- endDateExpect
566
- endDateActual
567
- startDateActual
568
- startDateExpect
569
- source
570
- owner {
571
- id
572
- fullName
573
- name
574
- type
575
- phone
576
- email
577
- }
578
- priorityName
579
- priorityValue
580
- connectorId
581
- mode
582
- partyGroupIds
583
- tagIds
584
- processResult
585
- processStatus
586
- }
587
- actionLink {
588
- name
589
- uri
590
- type
591
- partyId
592
- fromCollection
593
- toCollection
594
- group
595
- params
596
- id
597
- createdStamp
598
- updatedStamp
599
- updatedBy
600
- createdBy
601
- }
602
- }
603
- attachments {
604
- id
605
- createdStamp
606
- updatedStamp
607
- updatedBy
608
- createdBy
609
- partyId
610
- path
611
- srcId
612
- srcName
613
- srcPath
614
- srcConfigPathId
615
- name
616
- fileType
617
- type
618
- status
619
- referId
620
- }
621
- processPipeline {
622
- id
623
- name
624
- }
625
- }
626
- }
427
+ exports.CREATE_WORK_EFFORT = (0, graphql_tag_1.gql) `
428
+ mutation CreateWorkEffort(
429
+ $partnerId: String!
430
+ $createdBy: String!
431
+ $name: String
432
+ $description: String
433
+ $workEffortTypeId: String!
434
+ $group: String
435
+ $attributes: JSON
436
+ $addAttachmentRequest: [AddAttachmentRequest]
437
+ $parentId: String
438
+ ) {
439
+ createWorkEffort(
440
+ partnerId: $partnerId
441
+ createdBy: $createdBy
442
+ name: $name
443
+ description: $description
444
+ workEffortTypeId: $workEffortTypeId
445
+ group: $group
446
+ attributes: $attributes
447
+ addAttachmentRequest: $addAttachmentRequest
448
+ parentId: $parentId
449
+ ) {
450
+ id
451
+ createdStamp
452
+ updatedStamp
453
+ createdBy
454
+ updatedBy
455
+ name
456
+ partyId
457
+ targetId
458
+ targetType
459
+ targetUrl
460
+ description
461
+ status
462
+ parentId
463
+ workEffortTypeId
464
+ stmId
465
+ workflowId
466
+ endDateExpect
467
+ endDateActual
468
+ startDateActual
469
+ startDateExpect
470
+ source
471
+ owner {
472
+ id
473
+ fullName
474
+ name
475
+ type
476
+ phone
477
+ email
478
+ }
479
+ priorityName
480
+ priorityValue
481
+ connectorId
482
+ mode
483
+ partyGroupIds
484
+ tagIds
485
+ processResult
486
+ processStatus
487
+ subTasks {
488
+ id
489
+ createdStamp
490
+ updatedStamp
491
+ createdBy
492
+ updatedBy
493
+ name
494
+ partyId
495
+ targetId
496
+ targetType
497
+ targetUrl
498
+ description
499
+ status
500
+ parentId
501
+ workEffortTypeId
502
+ stmId
503
+ workflowId
504
+ endDateExpect
505
+ endDateActual
506
+ startDateActual
507
+ startDateExpect
508
+ source
509
+ group
510
+ owner {
511
+ id
512
+ fullName
513
+ name
514
+ type
515
+ phone
516
+ email
517
+ }
518
+ priorityName
519
+ priorityValue
520
+ connectorId
521
+ mode
522
+ partyGroupIds
523
+ tagIds
524
+ processResult
525
+ processStatus
526
+ processPipeline {
527
+ id
528
+ name
529
+ }
530
+ attachments {
531
+ id
532
+ createdStamp
533
+ updatedStamp
534
+ updatedBy
535
+ createdBy
536
+ partyId
537
+ path
538
+ srcId
539
+ srcName
540
+ srcPath
541
+ srcConfigPathId
542
+ name
543
+ fileType
544
+ type
545
+ status
546
+ referId
547
+ }
548
+ subTasks {
549
+ id
550
+ createdStamp
551
+ updatedStamp
552
+ createdBy
553
+ updatedBy
554
+ name
555
+ partyId
556
+ targetId
557
+ targetType
558
+ targetUrl
559
+ description
560
+ status
561
+ parentId
562
+ workEffortTypeId
563
+ stmId
564
+ workflowId
565
+ endDateExpect
566
+ endDateActual
567
+ startDateActual
568
+ startDateExpect
569
+ source
570
+ owner {
571
+ id
572
+ fullName
573
+ name
574
+ type
575
+ phone
576
+ email
577
+ }
578
+ priorityName
579
+ priorityValue
580
+ connectorId
581
+ mode
582
+ partyGroupIds
583
+ tagIds
584
+ processResult
585
+ processStatus
586
+ }
587
+ actionLink {
588
+ name
589
+ uri
590
+ type
591
+ partyId
592
+ fromCollection
593
+ toCollection
594
+ group
595
+ params
596
+ id
597
+ createdStamp
598
+ updatedStamp
599
+ updatedBy
600
+ createdBy
601
+ }
602
+ }
603
+ attachments {
604
+ id
605
+ createdStamp
606
+ updatedStamp
607
+ updatedBy
608
+ createdBy
609
+ partyId
610
+ path
611
+ srcId
612
+ srcName
613
+ srcPath
614
+ srcConfigPathId
615
+ name
616
+ fileType
617
+ type
618
+ status
619
+ referId
620
+ }
621
+ processPipeline {
622
+ id
623
+ name
624
+ }
625
+ }
626
+ }
627
627
  `;
628
- exports.UPDATE_WORK_EFFORT_PROCESS_STATUS = (0, graphql_tag_1.gql) `
629
- mutation UpdateWorkEffortProcessStatus(
630
- $workEffortId: String!
631
- $processStatus: String!
632
- $performerId: String!
633
- ) {
634
- updateWorkEffortProcessStatus(
635
- workEffortId: $workEffortId
636
- processStatus: $processStatus
637
- performerId: $performerId
638
- ) {
639
- id
640
- createdStamp
641
- updatedStamp
642
- createdBy
643
- updatedBy
644
- name
645
- partyId
646
- targetId
647
- targetType
648
- targetUrl
649
- description
650
- status
651
- parentId
652
- workEffortTypeId
653
- stmId
654
- workflowId
655
- endDateExpect
656
- endDateActual
657
- startDateActual
658
- startDateExpect
659
- source
660
- owner {
661
- id
662
- fullName
663
- name
664
- type
665
- phone
666
- email
667
- }
668
- priorityName
669
- priorityValue
670
- connectorId
671
- mode
672
- partyGroupIds
673
- tagIds
674
- processResult
675
- actionLink {
676
- name
677
- uri
678
- type
679
- partyId
680
- fromCollection
681
- toCollection
682
- group
683
- params
684
- id
685
- createdStamp
686
- updatedStamp
687
- updatedBy
688
- createdBy
689
- }
690
- subTasks {
691
- id
692
- createdStamp
693
- updatedStamp
694
- createdBy
695
- updatedBy
696
- name
697
- partyId
698
- targetId
699
- targetType
700
- targetUrl
701
- description
702
- status
703
- parentId
704
- workEffortTypeId
705
- stmId
706
- workflowId
707
- endDateExpect
708
- endDateActual
709
- startDateActual
710
- startDateExpect
711
- source
712
- owner {
713
- id
714
- fullName
715
- name
716
- type
717
- phone
718
- email
719
- }
720
- priorityName
721
- priorityValue
722
- connectorId
723
- mode
724
- partyGroupIds
725
- tagIds
726
- processResult
727
- }
728
- attachments {
729
- id
730
- createdStamp
731
- updatedStamp
732
- updatedBy
733
- createdBy
734
- partyId
735
- path
736
- srcId
737
- srcName
738
- srcPath
739
- srcConfigPathId
740
- name
741
- fileType
742
- type
743
- status
744
- referId
745
- }
746
- processPipeline {
747
- id
748
- name
749
- }
750
- }
751
- }
628
+ exports.UPDATE_WORK_EFFORT_PROCESS_STATUS = (0, graphql_tag_1.gql) `
629
+ mutation UpdateWorkEffortProcessStatus(
630
+ $workEffortId: String!
631
+ $processStatus: String!
632
+ $performerId: String!
633
+ ) {
634
+ updateWorkEffortProcessStatus(
635
+ workEffortId: $workEffortId
636
+ processStatus: $processStatus
637
+ performerId: $performerId
638
+ ) {
639
+ id
640
+ createdStamp
641
+ updatedStamp
642
+ createdBy
643
+ updatedBy
644
+ name
645
+ partyId
646
+ targetId
647
+ targetType
648
+ targetUrl
649
+ description
650
+ status
651
+ parentId
652
+ workEffortTypeId
653
+ stmId
654
+ workflowId
655
+ endDateExpect
656
+ endDateActual
657
+ startDateActual
658
+ startDateExpect
659
+ source
660
+ owner {
661
+ id
662
+ fullName
663
+ name
664
+ type
665
+ phone
666
+ email
667
+ }
668
+ priorityName
669
+ priorityValue
670
+ connectorId
671
+ mode
672
+ partyGroupIds
673
+ tagIds
674
+ processResult
675
+ actionLink {
676
+ name
677
+ uri
678
+ type
679
+ partyId
680
+ fromCollection
681
+ toCollection
682
+ group
683
+ params
684
+ id
685
+ createdStamp
686
+ updatedStamp
687
+ updatedBy
688
+ createdBy
689
+ }
690
+ subTasks {
691
+ id
692
+ createdStamp
693
+ updatedStamp
694
+ createdBy
695
+ updatedBy
696
+ name
697
+ partyId
698
+ targetId
699
+ targetType
700
+ targetUrl
701
+ description
702
+ status
703
+ parentId
704
+ workEffortTypeId
705
+ stmId
706
+ workflowId
707
+ endDateExpect
708
+ endDateActual
709
+ startDateActual
710
+ startDateExpect
711
+ source
712
+ owner {
713
+ id
714
+ fullName
715
+ name
716
+ type
717
+ phone
718
+ email
719
+ }
720
+ priorityName
721
+ priorityValue
722
+ connectorId
723
+ mode
724
+ partyGroupIds
725
+ tagIds
726
+ processResult
727
+ }
728
+ attachments {
729
+ id
730
+ createdStamp
731
+ updatedStamp
732
+ updatedBy
733
+ createdBy
734
+ partyId
735
+ path
736
+ srcId
737
+ srcName
738
+ srcPath
739
+ srcConfigPathId
740
+ name
741
+ fileType
742
+ type
743
+ status
744
+ referId
745
+ }
746
+ processPipeline {
747
+ id
748
+ name
749
+ }
750
+ }
751
+ }
752
752
  `;
753
- exports.CREATE_CONNECTOR = (0, graphql_tag_1.gql) `
754
- mutation CreateConnector(
755
- $resourceId: String!
756
- $resourceType: String!
757
- $description: String
758
- $type: String!
759
- $createdBy: String!
760
- ) {
761
- createConnector(
762
- resourceId: $resourceId
763
- resourceType: $resourceType
764
- description: $description
765
- type: $type
766
- createdBy: $createdBy
767
- )
768
- }
753
+ exports.CREATE_CONNECTOR = (0, graphql_tag_1.gql) `
754
+ mutation CreateConnector(
755
+ $resourceId: String!
756
+ $resourceType: String!
757
+ $description: String
758
+ $type: String!
759
+ $createdBy: String!
760
+ ) {
761
+ createConnector(
762
+ resourceId: $resourceId
763
+ resourceType: $resourceType
764
+ description: $description
765
+ type: $type
766
+ createdBy: $createdBy
767
+ )
768
+ }
769
769
  `;
770
- exports.ADD_TAG = (0, graphql_tag_1.gql) `
771
- mutation AddTag(
772
- $connectorId: String!
773
- $tagTitle: String!
774
- $tagId: String
775
- $addedBy: String!
776
- ) {
777
- addTag(
778
- connectorId: $connectorId
779
- tagTitle: $tagTitle
780
- tagId: $tagId
781
- addedBy: $addedBy
782
- )
783
- }
770
+ exports.ADD_TAG = (0, graphql_tag_1.gql) `
771
+ mutation AddTag(
772
+ $connectorId: String!
773
+ $tagTitle: String!
774
+ $tagId: String
775
+ $addedBy: String!
776
+ ) {
777
+ addTag(
778
+ connectorId: $connectorId
779
+ tagTitle: $tagTitle
780
+ tagId: $tagId
781
+ addedBy: $addedBy
782
+ )
783
+ }
784
784
  `;
785
- exports.UPDATE_CONNECTOR_DESCRIPTION = (0, graphql_tag_1.gql) `
786
- mutation UpdateConnectorDescription(
787
- $connectorId: String!
788
- $description: String!
789
- $updatedBy: String!
790
- ) {
791
- updateConnectorDescription(
792
- connectorId: $connectorId
793
- description: $description
794
- updatedBy: $updatedBy
795
- )
796
- }
785
+ exports.UPDATE_CONNECTOR_DESCRIPTION = (0, graphql_tag_1.gql) `
786
+ mutation UpdateConnectorDescription(
787
+ $connectorId: String!
788
+ $description: String!
789
+ $updatedBy: String!
790
+ ) {
791
+ updateConnectorDescription(
792
+ connectorId: $connectorId
793
+ description: $description
794
+ updatedBy: $updatedBy
795
+ )
796
+ }
797
797
  `;
798
- exports.REMOVE_TAG = (0, graphql_tag_1.gql) `
799
- mutation RemoveTag(
800
- $connectorId: String!
801
- $tagId: String!
802
- $removedBy: String!
803
- ) {
804
- removeTag(connectorId: $connectorId, tagId: $tagId, removedBy: $removedBy)
805
- }
798
+ exports.REMOVE_TAG = (0, graphql_tag_1.gql) `
799
+ mutation RemoveTag(
800
+ $connectorId: String!
801
+ $tagId: String!
802
+ $removedBy: String!
803
+ ) {
804
+ removeTag(connectorId: $connectorId, tagId: $tagId, removedBy: $removedBy)
805
+ }
806
806
  `;
807
- exports.CLOSE_TOPIC = (0, graphql_tag_1.gql) `
808
- mutation CloseTopic($id: String!, $updatedBy: String) {
809
- closeTopic(id: $id, updatedBy: $updatedBy) {
810
- id
811
- status
812
- name
813
- communicationChannel
814
- accountableId
815
- accountableName
816
- createdStamp
817
- threadId
818
- roomId
819
- channelId
820
- channelType
821
- }
822
- }
807
+ exports.CLOSE_TOPIC = (0, graphql_tag_1.gql) `
808
+ mutation CloseTopic($id: String!, $updatedBy: String) {
809
+ closeTopic(id: $id, updatedBy: $updatedBy) {
810
+ id
811
+ status
812
+ name
813
+ communicationChannel
814
+ accountableId
815
+ accountableName
816
+ createdStamp
817
+ threadId
818
+ roomId
819
+ channelId
820
+ channelType
821
+ }
822
+ }
823
823
  `;
824
- exports.CREATE_TOPIC = (0, graphql_tag_1.gql) `
825
- mutation CreateTopic(
826
- $socialAppId: String!
827
- $customerId: String!
828
- $message: String!
829
- ) {
830
- createTopic(
831
- socialAppId: $socialAppId
832
- customerId: $customerId
833
- message: $message
834
- ) {
835
- id
836
- status
837
- name
838
- communicationChannel
839
- customerId
840
- accountableId
841
- accountableName
842
- customerName
843
- createdStamp
844
- threadId
845
- roomId
846
- }
847
- }
824
+ exports.CREATE_TOPIC = (0, graphql_tag_1.gql) `
825
+ mutation CreateTopic(
826
+ $socialAppId: String!
827
+ $customerId: String!
828
+ $message: String!
829
+ ) {
830
+ createTopic(
831
+ socialAppId: $socialAppId
832
+ customerId: $customerId
833
+ message: $message
834
+ ) {
835
+ id
836
+ status
837
+ name
838
+ communicationChannel
839
+ customerId
840
+ accountableId
841
+ accountableName
842
+ customerName
843
+ createdStamp
844
+ threadId
845
+ roomId
846
+ }
847
+ }
848
848
  `;
849
- exports.ADD_TOPIC_RELATED_RESOURCE = (0, graphql_tag_1.gql) `
850
- mutation AddTopicRelatedResource(
851
- $topicId: String!
852
- $resourceId: String!
853
- $resourceType: String!
854
- $createdBy: String!
855
- ) {
856
- addTopicRelatedResource(
857
- topicId: $topicId
858
- resourceId: $resourceId
859
- resourceType: $resourceType
860
- createdBy: $createdBy
861
- )
862
- }
849
+ exports.ADD_TOPIC_RELATED_RESOURCE = (0, graphql_tag_1.gql) `
850
+ mutation AddTopicRelatedResource(
851
+ $topicId: String!
852
+ $resourceId: String!
853
+ $resourceType: String!
854
+ $createdBy: String!
855
+ ) {
856
+ addTopicRelatedResource(
857
+ topicId: $topicId
858
+ resourceId: $resourceId
859
+ resourceType: $resourceType
860
+ createdBy: $createdBy
861
+ )
862
+ }
863
863
  `;
864
- exports.CREATE_WORK_EFFORT_V2 = (0, graphql_tag_1.gql) `
865
- mutation CreateWorkEffort(
866
- $partnerId: String!
867
- $createdBy: String!
868
- $name: String
869
- $description: String
870
- $workEffortTypeId: String!
871
- $source: String!
872
- ) {
873
- createWorkEffort(
874
- partnerId: $partnerId
875
- createdBy: $createdBy
876
- name: $name
877
- description: $description
878
- workEffortTypeId: $workEffortTypeId
879
- source: $source
880
- ) {
881
- id
882
- createdStamp
883
- updatedStamp
884
- createdBy
885
- updatedBy
886
- name
887
- partyId
888
- targetId
889
- targetType
890
- targetUrl
891
- description
892
- status
893
- parentId
894
- workEffortTypeId
895
- stmId
896
- workflowId
897
- endDateExpect
898
- endDateActual
899
- startDateActual
900
- startDateExpect
901
- source
902
- owner {
903
- id
904
- fullName
905
- name
906
- type
907
- phone
908
- email
909
- }
910
- priorityName
911
- priorityValue
912
- connectorId
913
- mode
914
- partyGroupIds
915
- tagIds
916
- processResult
917
- processStatus
918
- subTasks {
919
- id
920
- createdStamp
921
- updatedStamp
922
- createdBy
923
- updatedBy
924
- name
925
- partyId
926
- targetId
927
- targetType
928
- targetUrl
929
- description
930
- status
931
- parentId
932
- workEffortTypeId
933
- stmId
934
- workflowId
935
- endDateExpect
936
- endDateActual
937
- startDateActual
938
- startDateExpect
939
- source
940
- owner {
941
- id
942
- fullName
943
- name
944
- type
945
- phone
946
- email
947
- }
948
- priorityName
949
- priorityValue
950
- connectorId
951
- mode
952
- partyGroupIds
953
- tagIds
954
- processResult
955
- processStatus
956
- processPipeline {
957
- id
958
- name
959
- }
960
- attachments {
961
- id
962
- createdStamp
963
- updatedStamp
964
- updatedBy
965
- createdBy
966
- partyId
967
- path
968
- srcId
969
- srcName
970
- srcPath
971
- srcConfigPathId
972
- name
973
- fileType
974
- type
975
- status
976
- referId
977
- }
978
- subTasks {
979
- id
980
- createdStamp
981
- updatedStamp
982
- createdBy
983
- updatedBy
984
- name
985
- partyId
986
- targetId
987
- targetType
988
- targetUrl
989
- description
990
- status
991
- parentId
992
- workEffortTypeId
993
- stmId
994
- workflowId
995
- endDateExpect
996
- endDateActual
997
- startDateActual
998
- startDateExpect
999
- source
1000
- owner {
1001
- id
1002
- fullName
1003
- name
1004
- type
1005
- phone
1006
- email
1007
- }
1008
- priorityName
1009
- priorityValue
1010
- connectorId
1011
- mode
1012
- partyGroupIds
1013
- tagIds
1014
- processResult
1015
- processStatus
1016
- }
1017
- actionLink {
1018
- name
1019
- uri
1020
- type
1021
- partyId
1022
- fromCollection
1023
- toCollection
1024
- group
1025
- params
1026
- id
1027
- createdStamp
1028
- updatedStamp
1029
- updatedBy
1030
- createdBy
1031
- }
1032
- }
1033
- attachments {
1034
- id
1035
- createdStamp
1036
- updatedStamp
1037
- updatedBy
1038
- createdBy
1039
- partyId
1040
- path
1041
- srcId
1042
- srcName
1043
- srcPath
1044
- srcConfigPathId
1045
- name
1046
- fileType
1047
- type
1048
- status
1049
- referId
1050
- }
1051
- processPipeline {
1052
- id
1053
- name
1054
- }
1055
- }
1056
- }
864
+ exports.CREATE_WORK_EFFORT_V2 = (0, graphql_tag_1.gql) `
865
+ mutation CreateWorkEffort(
866
+ $partnerId: String!
867
+ $createdBy: String!
868
+ $name: String
869
+ $description: String
870
+ $workEffortTypeId: String!
871
+ $source: String!
872
+ ) {
873
+ createWorkEffort(
874
+ partnerId: $partnerId
875
+ createdBy: $createdBy
876
+ name: $name
877
+ description: $description
878
+ workEffortTypeId: $workEffortTypeId
879
+ source: $source
880
+ ) {
881
+ id
882
+ createdStamp
883
+ updatedStamp
884
+ createdBy
885
+ updatedBy
886
+ name
887
+ partyId
888
+ targetId
889
+ targetType
890
+ targetUrl
891
+ description
892
+ status
893
+ parentId
894
+ workEffortTypeId
895
+ stmId
896
+ workflowId
897
+ endDateExpect
898
+ endDateActual
899
+ startDateActual
900
+ startDateExpect
901
+ source
902
+ owner {
903
+ id
904
+ fullName
905
+ name
906
+ type
907
+ phone
908
+ email
909
+ }
910
+ priorityName
911
+ priorityValue
912
+ connectorId
913
+ mode
914
+ partyGroupIds
915
+ tagIds
916
+ processResult
917
+ processStatus
918
+ subTasks {
919
+ id
920
+ createdStamp
921
+ updatedStamp
922
+ createdBy
923
+ updatedBy
924
+ name
925
+ partyId
926
+ targetId
927
+ targetType
928
+ targetUrl
929
+ description
930
+ status
931
+ parentId
932
+ workEffortTypeId
933
+ stmId
934
+ workflowId
935
+ endDateExpect
936
+ endDateActual
937
+ startDateActual
938
+ startDateExpect
939
+ source
940
+ owner {
941
+ id
942
+ fullName
943
+ name
944
+ type
945
+ phone
946
+ email
947
+ }
948
+ priorityName
949
+ priorityValue
950
+ connectorId
951
+ mode
952
+ partyGroupIds
953
+ tagIds
954
+ processResult
955
+ processStatus
956
+ processPipeline {
957
+ id
958
+ name
959
+ }
960
+ attachments {
961
+ id
962
+ createdStamp
963
+ updatedStamp
964
+ updatedBy
965
+ createdBy
966
+ partyId
967
+ path
968
+ srcId
969
+ srcName
970
+ srcPath
971
+ srcConfigPathId
972
+ name
973
+ fileType
974
+ type
975
+ status
976
+ referId
977
+ }
978
+ subTasks {
979
+ id
980
+ createdStamp
981
+ updatedStamp
982
+ createdBy
983
+ updatedBy
984
+ name
985
+ partyId
986
+ targetId
987
+ targetType
988
+ targetUrl
989
+ description
990
+ status
991
+ parentId
992
+ workEffortTypeId
993
+ stmId
994
+ workflowId
995
+ endDateExpect
996
+ endDateActual
997
+ startDateActual
998
+ startDateExpect
999
+ source
1000
+ owner {
1001
+ id
1002
+ fullName
1003
+ name
1004
+ type
1005
+ phone
1006
+ email
1007
+ }
1008
+ priorityName
1009
+ priorityValue
1010
+ connectorId
1011
+ mode
1012
+ partyGroupIds
1013
+ tagIds
1014
+ processResult
1015
+ processStatus
1016
+ }
1017
+ actionLink {
1018
+ name
1019
+ uri
1020
+ type
1021
+ partyId
1022
+ fromCollection
1023
+ toCollection
1024
+ group
1025
+ params
1026
+ id
1027
+ createdStamp
1028
+ updatedStamp
1029
+ updatedBy
1030
+ createdBy
1031
+ }
1032
+ }
1033
+ attachments {
1034
+ id
1035
+ createdStamp
1036
+ updatedStamp
1037
+ updatedBy
1038
+ createdBy
1039
+ partyId
1040
+ path
1041
+ srcId
1042
+ srcName
1043
+ srcPath
1044
+ srcConfigPathId
1045
+ name
1046
+ fileType
1047
+ type
1048
+ status
1049
+ referId
1050
+ }
1051
+ processPipeline {
1052
+ id
1053
+ name
1054
+ }
1055
+ }
1056
+ }
1057
1057
  `;
1058
- exports.CREATE_ORG_MUTATION = (0, graphql_tag_1.gql) `
1059
- mutation CreateOrg(
1060
- $orgName: String!
1061
- $providerId: String!
1062
- $groupTenantId: String!
1063
- ) {
1064
- createOrg(
1065
- orgName: $orgName
1066
- providerId: $providerId
1067
- groupTenantId: $groupTenantId
1068
- ) {
1069
- id
1070
- partyId
1071
- codeId
1072
- groupName
1073
- groupType
1074
- shortName
1075
- groupNameLocal
1076
- officeSiteName
1077
- comments
1078
- logoImageUrl
1079
- isIncorporated
1080
- federalTaxId
1081
- description
1082
- deleted
1083
- status
1084
- positionIndexId
1085
- prefix
1086
- }
1087
- }
1058
+ exports.CREATE_ORG_MUTATION = (0, graphql_tag_1.gql) `
1059
+ mutation CreateOrg(
1060
+ $orgName: String!
1061
+ $providerId: String!
1062
+ $groupTenantId: String!
1063
+ ) {
1064
+ createOrg(
1065
+ orgName: $orgName
1066
+ providerId: $providerId
1067
+ groupTenantId: $groupTenantId
1068
+ ) {
1069
+ id
1070
+ partyId
1071
+ codeId
1072
+ groupName
1073
+ groupType
1074
+ shortName
1075
+ groupNameLocal
1076
+ officeSiteName
1077
+ comments
1078
+ logoImageUrl
1079
+ isIncorporated
1080
+ federalTaxId
1081
+ description
1082
+ deleted
1083
+ status
1084
+ positionIndexId
1085
+ prefix
1086
+ }
1087
+ }
1088
1088
  `;