@cxtms/cx-schema 1.0.0 → 1.1.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.
Files changed (66) hide show
  1. package/.claude/skills/cx-core/SKILL.md +93 -0
  2. package/.claude/skills/cx-core/ref-entity-accounting.md +173 -0
  3. package/.claude/skills/cx-core/ref-entity-commodity.md +205 -0
  4. package/.claude/skills/cx-core/ref-entity-contact.md +153 -0
  5. package/.claude/skills/cx-core/ref-entity-geography.md +119 -0
  6. package/.claude/skills/cx-core/ref-entity-job.md +77 -0
  7. package/.claude/skills/cx-core/ref-entity-order-sub.md +140 -0
  8. package/.claude/skills/cx-core/ref-entity-order.md +168 -0
  9. package/.claude/skills/cx-core/ref-entity-rate.md +174 -0
  10. package/.claude/skills/cx-core/ref-entity-shared.md +147 -0
  11. package/.claude/skills/cx-core/ref-entity-warehouse.md +110 -0
  12. package/.claude/skills/cx-module/SKILL.md +402 -0
  13. package/.claude/skills/cx-module/ref-components-data.md +286 -0
  14. package/.claude/skills/cx-module/ref-components-display.md +394 -0
  15. package/.claude/skills/cx-module/ref-components-forms.md +362 -0
  16. package/.claude/skills/cx-module/ref-components-interactive.md +306 -0
  17. package/.claude/skills/cx-module/ref-components-layout.md +295 -0
  18. package/.claude/skills/cx-module/ref-components-specialized.md +427 -0
  19. package/.claude/skills/cx-workflow/SKILL.md +330 -0
  20. package/.claude/skills/cx-workflow/ref-accounting.md +66 -0
  21. package/.claude/skills/cx-workflow/ref-communication.md +161 -0
  22. package/.claude/skills/cx-workflow/ref-entity.md +162 -0
  23. package/.claude/skills/cx-workflow/ref-expressions.md +239 -0
  24. package/.claude/skills/cx-workflow/ref-filetransfer.md +80 -0
  25. package/.claude/skills/cx-workflow/ref-flow.md +180 -0
  26. package/.claude/skills/cx-workflow/ref-other.md +120 -0
  27. package/.claude/skills/cx-workflow/ref-query.md +85 -0
  28. package/.claude/skills/cx-workflow/ref-utilities.md +171 -0
  29. package/README.md +34 -34
  30. package/dist/cli.js +545 -35
  31. package/dist/cli.js.map +1 -1
  32. package/dist/types.d.ts +17 -1
  33. package/dist/types.d.ts.map +1 -1
  34. package/dist/workflowValidator.d.ts +31 -0
  35. package/dist/workflowValidator.d.ts.map +1 -1
  36. package/dist/workflowValidator.js +299 -9
  37. package/dist/workflowValidator.js.map +1 -1
  38. package/package.json +4 -3
  39. package/schemas/schema.graphql +2077 -321
  40. package/schemas/workflows/flow/aggregation.json +44 -0
  41. package/schemas/workflows/flow/entity.json +110 -0
  42. package/schemas/workflows/flow/state.json +105 -0
  43. package/schemas/workflows/flow/transition.json +143 -0
  44. package/schemas/workflows/input.json +53 -7
  45. package/schemas/workflows/output.json +20 -0
  46. package/schemas/workflows/trigger.json +4 -0
  47. package/schemas/workflows/variable.json +2 -6
  48. package/schemas/workflows/workflow.json +179 -21
  49. package/scripts/postinstall.js +30 -1
  50. package/templates/module-configuration.yaml +110 -0
  51. package/templates/module-form.yaml +152 -0
  52. package/templates/module-grid.yaml +229 -0
  53. package/templates/module-select.yaml +139 -0
  54. package/templates/module.yaml +3 -3
  55. package/templates/workflow-api-tracking.yaml +189 -0
  56. package/templates/workflow-basic.yaml +76 -0
  57. package/templates/workflow-document.yaml +155 -0
  58. package/templates/workflow-entity-trigger.yaml +90 -0
  59. package/templates/workflow-ftp-edi.yaml +158 -0
  60. package/templates/workflow-ftp-tracking.yaml +161 -0
  61. package/templates/workflow-mcp-tool.yaml +112 -0
  62. package/templates/workflow-public-api.yaml +135 -0
  63. package/templates/workflow-scheduled.yaml +125 -0
  64. package/templates/workflow-utility.yaml +96 -0
  65. package/templates/workflow-webhook.yaml +128 -0
  66. package/templates/workflow.yaml +52 -12
@@ -71,6 +71,15 @@ type AllOrderCommoditiesCollectionSegment {
71
71
  totalCount: Int! @cost(weight: "10")
72
72
  }
73
73
 
74
+ "A segment of a collection."
75
+ type ApiCredentialsCollectionSegment {
76
+ "Information to aid in pagination."
77
+ pageInfo: CollectionSegmentInfo!
78
+ "A flattened list of the items."
79
+ items: [apiCredential!]
80
+ totalCount: Int! @cost(weight: "10")
81
+ }
82
+
74
83
  type AppComponentGqlDto {
75
84
  appComponentId: UUID!
76
85
  appModuleId: UUID!
@@ -168,9 +177,13 @@ type ApplicationUserRolesCollectionSegment {
168
177
 
169
178
  type AttachmentGqlDto {
170
179
  getParentOrder: order @cost(weight: "10")
171
- getPresignedUri(expiresInDays: Int!, uriType: String!): String @cost(weight: "10")
180
+ getPresignedUri(expiresInDays: Int!, uriType: String!): String
181
+ @cost(weight: "10")
182
+ previewUri: String @cost(weight: "10")
183
+ thumbnailUri: String @cost(weight: "10")
172
184
  attachmentId: Int!
173
185
  attachmentGuid: UUID
186
+ status: AttachmentStatus!
174
187
  attachmentType: AttachmentType!
175
188
  created: DateTime!
176
189
  createdBy: String!
@@ -182,8 +195,6 @@ type AttachmentGqlDto {
182
195
  organizationId: Int!
183
196
  parentId: String
184
197
  parentType: AttachmentParentType!
185
- previewUri: String
186
- thumbnailUri: String
187
198
  presignedFileUri: String
188
199
  presignedPreviewUri: String
189
200
  presignedThumbnailUri: String
@@ -203,6 +214,110 @@ type AttachmentsCollectionSegment {
203
214
  totalCount: Int! @cost(weight: "10")
204
215
  }
205
216
 
217
+ "Detailed audit information for a single entity change"
218
+ type AuditChangeDetail {
219
+ "Name of the entity that was changed"
220
+ entityName: String
221
+ "Change state (Added, Modified, Deleted)"
222
+ state: String
223
+ "Primary key of the changed entity"
224
+ primaryKey: String
225
+ "User who made the change"
226
+ userId: String
227
+ "When the change was made"
228
+ timestamp: DateTime!
229
+ "Organization ID where change was made"
230
+ organizationId: Int
231
+ "Original values before the change"
232
+ originalValues: MapOfObject
233
+ "Current values after the change"
234
+ currentValues: MapOfObject
235
+ }
236
+
237
+ "Audit change entry with metadata parsed from filename. changedFields are loaded on demand."
238
+ type AuditChangeEntry {
239
+ "Change state (Added, Modified, Deleted)"
240
+ state: String
241
+ "User ID who made the change"
242
+ userId: String
243
+ "When the change was made"
244
+ timestamp: DateTime!
245
+ "User details (name, email, etc.). Loaded from database when requested."
246
+ user: AuditUser @cost(weight: "10")
247
+ "List of field-level changes. Downloads audit file when requested."
248
+ changedFields: [AuditChangeField!]! @cost(weight: "10")
249
+ entityName: String
250
+ entityPrimaryKey: String
251
+ }
252
+
253
+ "Field-level change information"
254
+ type AuditChangeField {
255
+ "Name of the field (e.g., 'Status' or 'CustomValues.Color')"
256
+ fieldName: String!
257
+ "Original value of the field"
258
+ originalValue: Any
259
+ "Current value of the field"
260
+ currentValue: Any
261
+ "Data type of the field"
262
+ fieldType: String!
263
+ }
264
+
265
+ "Parsed JSON representation of audit changes"
266
+ type AuditChangeJson {
267
+ "Unique identifier for this change"
268
+ changeId: UUID!
269
+ "Name of the entity that was changed"
270
+ entityName: String
271
+ "Change state (Added, Modified, Deleted)"
272
+ state: String
273
+ "Primary key of the changed entity"
274
+ primaryKey: String
275
+ "User who made the change"
276
+ userId: String
277
+ "When the change was made"
278
+ timestamp: DateTime!
279
+ "Organization ID where change was made"
280
+ organizationId: Int
281
+ "List of field-level changes"
282
+ fields: [AuditChangeField!]!
283
+ }
284
+
285
+ type AuditChangeSummariesResult {
286
+ items: [AuditChangeSummary!]!
287
+ continuationToken: String
288
+ hasMoreRecords: Boolean!
289
+ }
290
+
291
+ "Summary of audit changes for a specific change event"
292
+ type AuditChangeSummary {
293
+ "Unique identifier for this change set"
294
+ changeId: UUID!
295
+ "User who made the changes"
296
+ userId: String
297
+ "When the changes were made"
298
+ timestamp: DateTime!
299
+ "List of file paths containing individual change details"
300
+ changePaths: [String!]!
301
+ "Organization ID where changes were made"
302
+ organizationId: Int
303
+ }
304
+
305
+ "User information for audit log entries"
306
+ type AuditUser {
307
+ "User ID"
308
+ id: String!
309
+ "User's first name"
310
+ firstName: String
311
+ "User's last name"
312
+ lastName: String
313
+ "User's full name"
314
+ fullName: String
315
+ "Username"
316
+ userName: String
317
+ "User's email address"
318
+ email: String
319
+ }
320
+
206
321
  type AvailableCreditByCurrency {
207
322
  currencyId: Int!
208
323
  currencyCode: String!
@@ -217,7 +332,7 @@ type CalendarAvailabilityBlockGqlDto {
217
332
  end: DateTime!
218
333
  isAvailable: Boolean!
219
334
  description: String
220
- customValues: [MapOfObject!]
335
+ customValues: MapOfObject
221
336
  created: DateTime!
222
337
  lastModified: DateTime!
223
338
  createdBy: String!
@@ -247,16 +362,37 @@ type CalendarAvailabilityRecurrenceRuleGqlDto {
247
362
  count: Int
248
363
  }
249
364
 
365
+ type CalendarBusinessHourBlockGqlDto {
366
+ calendarBusinessHourId: Int!
367
+ calendarId: Int!
368
+ start: DateTime!
369
+ end: DateTime!
370
+ dayOfWeek: Int!
371
+ label: String
372
+ customValues: MapOfObject
373
+ startFormatted: String!
374
+ endFormatted: String!
375
+ }
376
+
250
377
  type CalendarBusinessHourGqlDto {
251
378
  calendarBusinessHourId: Int!
252
379
  calendarId: Int!
253
380
  dayOfWeek: Int!
254
- startTime: TimeSpan!
255
- endTime: TimeSpan!
381
+ startTime: TimeSpanScalar
382
+ endTime: TimeSpanScalar
256
383
  label: String
257
384
  customValues: MapOfObject
258
385
  }
259
386
 
387
+ "A segment of a collection."
388
+ type CalendarBusinessHoursBlocksCollectionSegment {
389
+ "Information to aid in pagination."
390
+ pageInfo: CollectionSegmentInfo!
391
+ "A flattened list of the items."
392
+ items: [CalendarBusinessHourBlockGqlDto!]
393
+ totalCount: Int! @cost(weight: "10")
394
+ }
395
+
260
396
  "A segment of a collection."
261
397
  type CalendarBusinessHoursCollectionSegment {
262
398
  "Information to aid in pagination."
@@ -276,7 +412,7 @@ type CalendarEventGqlDto {
276
412
  end: DateTime!
277
413
  status: CalendarEventStatus!
278
414
  transparency: CalendarEventTransparency!
279
- customValues: [MapOfObject!]
415
+ customValues: MapOfObject
280
416
  created: DateTime!
281
417
  lastModified: DateTime!
282
418
  createdBy: String!
@@ -389,6 +525,16 @@ type CommoditiesCollectionSegment {
389
525
  totalCount: Int! @cost(weight: "10")
390
526
  }
391
527
 
528
+ type CommodityAllTagsGqlDto {
529
+ commodityId: Int!
530
+ organizationId: Int!
531
+ tagId: Int!
532
+ tagName: String!
533
+ tagDescription: String
534
+ tagEntityName: String!
535
+ customValues: MapOfObject
536
+ }
537
+
392
538
  "A segment of a collection."
393
539
  type CommodityStatusesCollectionSegment {
394
540
  "Information to aid in pagination."
@@ -398,6 +544,17 @@ type CommodityStatusesCollectionSegment {
398
544
  totalCount: Int! @cost(weight: "10")
399
545
  }
400
546
 
547
+ type CommodityTagGqlDto {
548
+ commodityId: Int!
549
+ tagId: Int!
550
+ tag: tagItem
551
+ customValues: MapOfObject
552
+ createdBy: String
553
+ created: DateTime!
554
+ lastModifiedBy: String
555
+ lastModified: DateTime!
556
+ }
557
+
401
558
  "A segment of a collection."
402
559
  type CommodityTrackingNumbersCollectionSegment {
403
560
  "Information to aid in pagination."
@@ -524,6 +681,11 @@ type CreateActionEventPayload {
524
681
  query: Query!
525
682
  }
526
683
 
684
+ type CreateApiCredentialPayload {
685
+ apiCredentialWithSecret: apiCredentialWithSecret
686
+ query: Query!
687
+ }
688
+
527
689
  type CreateAppManifestPayload {
528
690
  appManifest: appManifest
529
691
  query: Query!
@@ -684,6 +846,11 @@ type CreateModeOfTransportationPayload {
684
846
  query: Query!
685
847
  }
686
848
 
849
+ type CreateNotePayload {
850
+ note: note
851
+ query: Query!
852
+ }
853
+
687
854
  type CreateOrderCommodityPayload {
688
855
  orderCommodity: orderCommodity
689
856
  query: Query!
@@ -714,6 +881,11 @@ type CreateOrganizationConfigPayload {
714
881
  query: Query!
715
882
  }
716
883
 
884
+ type CreateOrganizationUserPayload {
885
+ organizationUser: organizationUser
886
+ query: Query!
887
+ }
888
+
717
889
  type CreatePackageCategoryPayload {
718
890
  packageCategory: packageCategory
719
891
  query: Query!
@@ -774,6 +946,11 @@ type CreateStatePayload {
774
946
  query: Query!
775
947
  }
776
948
 
949
+ type CreateTagPayload {
950
+ tagItem: tagItem
951
+ query: Query!
952
+ }
953
+
777
954
  type CreateTrackingEventPayload {
778
955
  trackingEvent: trackingEvent
779
956
  query: Query!
@@ -876,6 +1053,11 @@ type DeleteActionEventPayload {
876
1053
  query: Query!
877
1054
  }
878
1055
 
1056
+ type DeleteApiCredentialPayload {
1057
+ deleteResult: DeleteResult
1058
+ query: Query!
1059
+ }
1060
+
879
1061
  type DeleteAppManifestPayload {
880
1062
  deleteResult: DeleteResult
881
1063
  query: Query!
@@ -1036,6 +1218,11 @@ type DeleteModeOfTransportationPayload {
1036
1218
  query: Query!
1037
1219
  }
1038
1220
 
1221
+ type DeleteNotePayload {
1222
+ deleteResult: DeleteResult
1223
+ query: Query!
1224
+ }
1225
+
1039
1226
  type DeleteOrderCommodityPayload {
1040
1227
  deleteResult: DeleteResult
1041
1228
  query: Query!
@@ -1061,6 +1248,11 @@ type DeleteOrganizationConfigPayload {
1061
1248
  query: Query!
1062
1249
  }
1063
1250
 
1251
+ type DeleteOrganizationUserPayload {
1252
+ deleteResult: DeleteResult
1253
+ query: Query!
1254
+ }
1255
+
1064
1256
  type DeletePackageCategoryPayload {
1065
1257
  deleteResult: DeleteResult
1066
1258
  query: Query!
@@ -1125,6 +1317,11 @@ type DeleteStatePayload {
1125
1317
  query: Query!
1126
1318
  }
1127
1319
 
1320
+ type DeleteTagPayload {
1321
+ deleteResult: DeleteResult
1322
+ query: Query!
1323
+ }
1324
+
1128
1325
  type DeleteTrackingEventPayload {
1129
1326
  deleteResult: DeleteResult
1130
1327
  query: Query!
@@ -1180,6 +1377,11 @@ type DeleteWorkflowPayload {
1180
1377
  query: Query!
1181
1378
  }
1182
1379
 
1380
+ type DisableApiCredentialPayload {
1381
+ apiCredential: apiCredential
1382
+ query: Query!
1383
+ }
1384
+
1183
1385
  "A segment of a collection."
1184
1386
  type DiscountsCollectionSegment {
1185
1387
  "Information to aid in pagination."
@@ -1233,7 +1435,9 @@ type DocumentTemplatesCollectionSegment {
1233
1435
  }
1234
1436
 
1235
1437
  type EmailAttachmentGqlDto {
1236
- getEmailPresignedUri(expiresInDays: Int!, uriType: String!): String @cost(weight: "10")
1438
+ getEmailPresignedUri(expiresInDays: Int!, uriType: String!): String
1439
+ @cost(weight: "10")
1440
+ id: String!
1237
1441
  attachmentId: Int
1238
1442
  orderDocumentId: Int
1239
1443
  documentWorkflowId: UUID
@@ -1243,6 +1447,51 @@ type EmailAttachmentGqlDto {
1243
1447
  previewUri: String
1244
1448
  }
1245
1449
 
1450
+ type EnableApiCredentialPayload {
1451
+ apiCredential: apiCredential
1452
+ query: Query!
1453
+ }
1454
+
1455
+ "Complete audit history for a specific entity"
1456
+ type EntityAuditHistory {
1457
+ "Name of the entity"
1458
+ entityName: String
1459
+ "Primary key of the entity"
1460
+ primaryKey: String
1461
+ "List of all changes for this entity"
1462
+ changes: [AuditChangeDetail!]!
1463
+ }
1464
+
1465
+ "Lightweight audit history result - metadata parsed from filenames, changedFields loaded on demand"
1466
+ type EntityAuditHistoryLightResult {
1467
+ "Name of the entity"
1468
+ entityName: String
1469
+ "Primary key of the entity"
1470
+ primaryKey: String
1471
+ "Organization ID"
1472
+ organizationId: Int
1473
+ "List of change entries for this entity"
1474
+ changes: [AuditChangeEntry!]!
1475
+ "Token for fetching next page of results"
1476
+ continuationToken: String
1477
+ "Whether more records exist"
1478
+ hasMoreRecords: Boolean!
1479
+ }
1480
+
1481
+ "Paginated audit history result for a specific entity"
1482
+ type EntityAuditHistoryResult {
1483
+ "Name of the entity"
1484
+ entityName: String
1485
+ "Primary key of the entity"
1486
+ primaryKey: String
1487
+ "List of changes for this entity"
1488
+ changes: [AuditChangeDetail!]!
1489
+ "Token for fetching next page of results"
1490
+ continuationToken: String
1491
+ "Whether more records exist"
1492
+ hasMoreRecords: Boolean!
1493
+ }
1494
+
1246
1495
  "A segment of a collection."
1247
1496
  type EntityFieldsCollectionSegment {
1248
1497
  "Information to aid in pagination."
@@ -1357,6 +1606,11 @@ type ImportEquipmentTypesPayload {
1357
1606
  query: Query!
1358
1607
  }
1359
1608
 
1609
+ type ImportPortsPayload {
1610
+ importResult: ImportResult
1611
+ query: Query!
1612
+ }
1613
+
1360
1614
  type ImportPostalCodesPayload {
1361
1615
  importResult: ImportResult
1362
1616
  query: Query!
@@ -1395,6 +1649,27 @@ type InstallAppManifestPayload {
1395
1649
  query: Query!
1396
1650
  }
1397
1651
 
1652
+ type InventoryItemAllTagsGqlDto {
1653
+ inventoryItemId: Int!
1654
+ organizationId: Int!
1655
+ tagId: Int!
1656
+ tagName: String!
1657
+ tagDescription: String
1658
+ tagEntityName: String!
1659
+ customValues: MapOfObject
1660
+ }
1661
+
1662
+ type InventoryItemTagGqlDto {
1663
+ inventoryItemId: Int!
1664
+ tagId: Int!
1665
+ tag: tagItem
1666
+ customValues: MapOfObject
1667
+ createdBy: String
1668
+ created: DateTime!
1669
+ lastModifiedBy: String
1670
+ lastModified: DateTime!
1671
+ }
1672
+
1398
1673
  "A segment of a collection."
1399
1674
  type InventoryItemsCollectionSegment {
1400
1675
  "Information to aid in pagination."
@@ -1472,6 +1747,11 @@ type LanesCollectionSegment {
1472
1747
  totalCount: Int! @cost(weight: "10")
1473
1748
  }
1474
1749
 
1750
+ type LinkChargesToAccountingTransactionPayload {
1751
+ accountingTransaction: accountingTransaction
1752
+ query: Query!
1753
+ }
1754
+
1475
1755
  type LinkDto {
1476
1756
  href: String!
1477
1757
  rel: String!
@@ -1499,186 +1779,417 @@ type ModeOfTransportationsCollectionSegment {
1499
1779
  }
1500
1780
 
1501
1781
  type Mutation {
1502
- createWorkflow(input: CreateWorkflowInput!): CreateWorkflowPayload! @cost(weight: "10")
1503
- updateWorkflow(input: UpdateWorkflowInput!): UpdateWorkflowPayload! @cost(weight: "10")
1504
- deleteWorkflow(input: DeleteWorkflowInput!): DeleteWorkflowPayload! @cost(weight: "10")
1505
- executeWorkflow(input: ExecuteWorkflowInput!): ExecuteWorkflowPayload! @cost(weight: "10")
1506
- createWarehouseZone(input: CreateWarehouseZoneInput!): CreateWarehouseZonePayload! @cost(weight: "10")
1507
- updateWarehouseZone(input: UpdateWarehouseZoneInput!): UpdateWarehouseZonePayload! @cost(weight: "10")
1508
- deleteWarehouseZone(input: DeleteWarehouseZoneInput!): DeleteWarehouseZonePayload! @cost(weight: "10")
1509
- createVessel(input: CreateVesselInput!): CreateVesselPayload! @cost(weight: "10")
1510
- updateVessel(input: UpdateVesselInput!): UpdateVesselPayload! @cost(weight: "10")
1511
- deleteVessel(input: DeleteVesselInput!): DeleteVesselPayload! @cost(weight: "10")
1782
+ createWorkflow(input: CreateWorkflowInput!): CreateWorkflowPayload!
1783
+ @cost(weight: "10")
1784
+ updateWorkflow(input: UpdateWorkflowInput!): UpdateWorkflowPayload!
1785
+ @cost(weight: "10")
1786
+ deleteWorkflow(input: DeleteWorkflowInput!): DeleteWorkflowPayload!
1787
+ @cost(weight: "10")
1788
+ executeWorkflow(input: ExecuteWorkflowInput!): ExecuteWorkflowPayload!
1789
+ @cost(weight: "10")
1790
+ createWarehouseZone(
1791
+ input: CreateWarehouseZoneInput!
1792
+ ): CreateWarehouseZonePayload! @cost(weight: "10")
1793
+ updateWarehouseZone(
1794
+ input: UpdateWarehouseZoneInput!
1795
+ ): UpdateWarehouseZonePayload! @cost(weight: "10")
1796
+ deleteWarehouseZone(
1797
+ input: DeleteWarehouseZoneInput!
1798
+ ): DeleteWarehouseZonePayload! @cost(weight: "10")
1799
+ createVessel(input: CreateVesselInput!): CreateVesselPayload!
1800
+ @cost(weight: "10")
1801
+ updateVessel(input: UpdateVesselInput!): UpdateVesselPayload!
1802
+ @cost(weight: "10")
1803
+ deleteVessel(input: DeleteVesselInput!): DeleteVesselPayload!
1804
+ @cost(weight: "10")
1512
1805
  createUser(input: CreateUserInput!): CreateUserPayload! @cost(weight: "10")
1513
1806
  updateUser(input: UpdateUserInput!): UpdateUserPayload! @cost(weight: "10")
1514
- changePasswordUser(input: ChangePasswordUserInput!): ChangePasswordUserPayload! @cost(weight: "10")
1807
+ changePasswordUser(
1808
+ input: ChangePasswordUserInput!
1809
+ ): ChangePasswordUserPayload! @cost(weight: "10")
1515
1810
  deleteUser(input: DeleteUserInput!): DeleteUserPayload! @cost(weight: "10")
1516
- createUserSetting(input: CreateUserSettingInput!): CreateUserSettingPayload! @cost(weight: "10")
1517
- updateUserSetting(input: UpdateUserSettingInput!): UpdateUserSettingPayload! @cost(weight: "10")
1518
- setUserSetting(input: SetUserSettingInput!): SetUserSettingPayload! @cost(weight: "10")
1519
- deleteUserSetting(input: DeleteUserSettingInput!): DeleteUserSettingPayload! @cost(weight: "10")
1520
- createUserGroupRole(input: CreateUserGroupRoleInput!): CreateUserGroupRolePayload! @cost(weight: "10")
1521
- deleteUserGroupRole(input: DeleteUserGroupRoleInput!): DeleteUserGroupRolePayload! @cost(weight: "10")
1522
- createUserEmployee(input: CreateUserEmployeeInput!): CreateUserEmployeePayload! @cost(weight: "10")
1523
- updateUserEmployee(input: UpdateUserEmployeeInput!): UpdateUserEmployeePayload! @cost(weight: "10")
1524
- deleteUserEmployee(input: DeleteUserEmployeeInput!): DeleteUserEmployeePayload! @cost(weight: "10")
1525
- createTrackingEvent(input: CreateTrackingEventInput!): CreateTrackingEventPayload! @cost(weight: "10")
1526
- updateTrackingEvent(input: UpdateTrackingEventInput!): UpdateTrackingEventPayload! @cost(weight: "10")
1527
- deleteTrackingEvent(input: DeleteTrackingEventInput!): DeleteTrackingEventPayload! @cost(weight: "10")
1811
+ createUserSetting(input: CreateUserSettingInput!): CreateUserSettingPayload!
1812
+ @cost(weight: "10")
1813
+ updateUserSetting(input: UpdateUserSettingInput!): UpdateUserSettingPayload!
1814
+ @cost(weight: "10")
1815
+ setUserSetting(input: SetUserSettingInput!): SetUserSettingPayload!
1816
+ @cost(weight: "10")
1817
+ deleteUserSetting(input: DeleteUserSettingInput!): DeleteUserSettingPayload!
1818
+ @cost(weight: "10")
1819
+ createUserGroupRole(
1820
+ input: CreateUserGroupRoleInput!
1821
+ ): CreateUserGroupRolePayload! @cost(weight: "10")
1822
+ deleteUserGroupRole(
1823
+ input: DeleteUserGroupRoleInput!
1824
+ ): DeleteUserGroupRolePayload! @cost(weight: "10")
1825
+ createUserEmployee(
1826
+ input: CreateUserEmployeeInput!
1827
+ ): CreateUserEmployeePayload! @cost(weight: "10")
1828
+ updateUserEmployee(
1829
+ input: UpdateUserEmployeeInput!
1830
+ ): UpdateUserEmployeePayload! @cost(weight: "10")
1831
+ deleteUserEmployee(
1832
+ input: DeleteUserEmployeeInput!
1833
+ ): DeleteUserEmployeePayload! @cost(weight: "10")
1834
+ createTrackingEvent(
1835
+ input: CreateTrackingEventInput!
1836
+ ): CreateTrackingEventPayload! @cost(weight: "10")
1837
+ updateTrackingEvent(
1838
+ input: UpdateTrackingEventInput!
1839
+ ): UpdateTrackingEventPayload! @cost(weight: "10")
1840
+ deleteTrackingEvent(
1841
+ input: DeleteTrackingEventInput!
1842
+ ): DeleteTrackingEventPayload! @cost(weight: "10")
1843
+ createTag(input: CreateTagInput!): CreateTagPayload! @cost(weight: "10")
1844
+ updateTag(input: UpdateTagInput!): UpdateTagPayload! @cost(weight: "10")
1845
+ deleteTag(input: DeleteTagInput!): DeleteTagPayload! @cost(weight: "10")
1528
1846
  createState(input: CreateStateInput!): CreateStatePayload! @cost(weight: "10")
1529
1847
  updateState(input: UpdateStateInput!): UpdateStatePayload! @cost(weight: "10")
1530
1848
  deleteState(input: DeleteStateInput!): DeleteStatePayload! @cost(weight: "10")
1531
- importStates(input: ImportStatesInput!): ImportStatesPayload! @cost(weight: "10")
1532
- createSalesTax(input: CreateSalesTaxInput!): CreateSalesTaxPayload! @cost(weight: "10")
1533
- updateSalesTax(input: UpdateSalesTaxInput!): UpdateSalesTaxPayload! @cost(weight: "10")
1534
- deleteSalesTax(input: DeleteSalesTaxInput!): DeleteSalesTaxPayload! @cost(weight: "10")
1849
+ importStates(input: ImportStatesInput!): ImportStatesPayload!
1850
+ @cost(weight: "10")
1851
+ createSalesTax(input: CreateSalesTaxInput!): CreateSalesTaxPayload!
1852
+ @cost(weight: "10")
1853
+ updateSalesTax(input: UpdateSalesTaxInput!): UpdateSalesTaxPayload!
1854
+ @cost(weight: "10")
1855
+ deleteSalesTax(input: DeleteSalesTaxInput!): DeleteSalesTaxPayload!
1856
+ @cost(weight: "10")
1535
1857
  createRoute(input: CreateRouteInput!): CreateRoutePayload! @cost(weight: "10")
1536
1858
  updateRoute(input: UpdateRouteInput!): UpdateRoutePayload! @cost(weight: "10")
1537
1859
  deleteRoute(input: DeleteRouteInput!): DeleteRoutePayload! @cost(weight: "10")
1538
- createRouteRouteLeg(input: CreateRouteRouteLegInput!): CreateRouteRouteLegPayload! @cost(weight: "10")
1539
- updateRouteRouteLeg(input: UpdateRouteRouteLegInput!): UpdateRouteRouteLegPayload! @cost(weight: "10")
1540
- deleteRouteRouteLeg(input: DeleteRouteRouteLegInput!): DeleteRouteRouteLegPayload! @cost(weight: "10")
1541
- createRouteLeg(input: CreateRouteLegInput!): CreateRouteLegPayload! @cost(weight: "10")
1542
- updateRouteLeg(input: UpdateRouteLegInput!): UpdateRouteLegPayload! @cost(weight: "10")
1543
- deleteRouteLeg(input: DeleteRouteLegInput!): DeleteRouteLegPayload! @cost(weight: "10")
1544
- createPostalCode(input: CreatePostalCodeInput!): CreatePostalCodePayload! @cost(weight: "10")
1545
- updatePostalCode(input: UpdatePostalCodeInput!): UpdatePostalCodePayload! @cost(weight: "10")
1546
- deletePostalCode(input: DeletePostalCodeInput!): DeletePostalCodePayload! @cost(weight: "10")
1547
- importPostalCodes(input: ImportPostalCodesInput!): ImportPostalCodesPayload! @cost(weight: "10")
1860
+ createRouteRouteLeg(
1861
+ input: CreateRouteRouteLegInput!
1862
+ ): CreateRouteRouteLegPayload! @cost(weight: "10")
1863
+ updateRouteRouteLeg(
1864
+ input: UpdateRouteRouteLegInput!
1865
+ ): UpdateRouteRouteLegPayload! @cost(weight: "10")
1866
+ deleteRouteRouteLeg(
1867
+ input: DeleteRouteRouteLegInput!
1868
+ ): DeleteRouteRouteLegPayload! @cost(weight: "10")
1869
+ createRouteLeg(input: CreateRouteLegInput!): CreateRouteLegPayload!
1870
+ @cost(weight: "10")
1871
+ updateRouteLeg(input: UpdateRouteLegInput!): UpdateRouteLegPayload!
1872
+ @cost(weight: "10")
1873
+ deleteRouteLeg(input: DeleteRouteLegInput!): DeleteRouteLegPayload!
1874
+ @cost(weight: "10")
1875
+ createPostalCode(input: CreatePostalCodeInput!): CreatePostalCodePayload!
1876
+ @cost(weight: "10")
1877
+ updatePostalCode(input: UpdatePostalCodeInput!): UpdatePostalCodePayload!
1878
+ @cost(weight: "10")
1879
+ deletePostalCode(input: DeletePostalCodeInput!): DeletePostalCodePayload!
1880
+ @cost(weight: "10")
1881
+ importPostalCodes(input: ImportPostalCodesInput!): ImportPostalCodesPayload!
1882
+ @cost(weight: "10")
1548
1883
  createPort(input: CreatePortInput!): CreatePortPayload! @cost(weight: "10")
1549
1884
  updatePort(input: UpdatePortInput!): UpdatePortPayload! @cost(weight: "10")
1550
1885
  deletePort(input: DeletePortInput!): DeletePortPayload! @cost(weight: "10")
1551
- createPaymentTerm(input: CreatePaymentTermInput!): CreatePaymentTermPayload! @cost(weight: "10")
1552
- updatePaymentTerm(input: UpdatePaymentTermInput!): UpdatePaymentTermPayload! @cost(weight: "10")
1553
- deletePaymentTerm(input: DeletePaymentTermInput!): DeletePaymentTermPayload! @cost(weight: "10")
1554
- createPayment(input: CreatePaymentInput!): CreatePaymentPayload! @cost(weight: "10")
1555
- updatePayment(input: UpdatePaymentInput!): UpdatePaymentPayload! @cost(weight: "10")
1556
- deletePayment(input: DeletePaymentInput!): DeletePaymentPayload! @cost(weight: "10")
1557
- createPackageType(input: CreatePackageTypeInput!): CreatePackageTypePayload! @cost(weight: "10")
1558
- updatePackageType(input: UpdatePackageTypeInput!): UpdatePackageTypePayload! @cost(weight: "10")
1559
- deletePackageType(input: DeletePackageTypeInput!): DeletePackageTypePayload! @cost(weight: "10")
1560
- createPackageCategory(input: CreatePackageCategoryInput!): CreatePackageCategoryPayload! @cost(weight: "10")
1561
- updatePackageCategory(input: UpdatePackageCategoryInput!): UpdatePackageCategoryPayload! @cost(weight: "10")
1562
- deletePackageCategory(input: DeletePackageCategoryInput!): DeletePackageCategoryPayload! @cost(weight: "10")
1563
- updateOrganization(input: UpdateOrganizationInput!): UpdateOrganizationPayload! @cost(weight: "10")
1564
- createOrganizationConfig(input: CreateOrganizationConfigInput!): CreateOrganizationConfigPayload! @cost(weight: "10")
1565
- updateOrganizationConfig(input: UpdateOrganizationConfigInput!): UpdateOrganizationConfigPayload! @cost(weight: "10")
1566
- deleteOrganizationConfig(input: DeleteOrganizationConfigInput!): DeleteOrganizationConfigPayload! @cost(weight: "10")
1567
- createWarehouseLocation(input: CreateWarehouseLocationInput!): CreateWarehouseLocationPayload! @cost(weight: "10")
1568
- updateWarehouseLocation(input: UpdateWarehouseLocationInput!): UpdateWarehouseLocationPayload! @cost(weight: "10")
1569
- deleteWarehouseLocation(input: DeleteWarehouseLocationInput!): DeleteWarehouseLocationPayload! @cost(weight: "10")
1570
- createOrderStatus(input: CreateOrderStatusInput!): CreateOrderStatusPayload! @cost(weight: "10")
1571
- updateOrderStatus(input: UpdateOrderStatusInput!): UpdateOrderStatusPayload! @cost(weight: "10")
1572
- deleteOrderStatus(input: DeleteOrderStatusInput!): DeleteOrderStatusPayload! @cost(weight: "10")
1573
- createOrderEntity(input: CreateOrderEntityInput!): CreateOrderEntityPayload! @cost(weight: "10")
1574
- updateOrderEntity(input: UpdateOrderEntityInput!): UpdateOrderEntityPayload! @cost(weight: "10")
1886
+ importPorts(input: ImportPortsInput!): ImportPortsPayload! @cost(weight: "10")
1887
+ createPaymentTerm(input: CreatePaymentTermInput!): CreatePaymentTermPayload!
1888
+ @cost(weight: "10")
1889
+ updatePaymentTerm(input: UpdatePaymentTermInput!): UpdatePaymentTermPayload!
1890
+ @cost(weight: "10")
1891
+ deletePaymentTerm(input: DeletePaymentTermInput!): DeletePaymentTermPayload!
1892
+ @cost(weight: "10")
1893
+ createPayment(input: CreatePaymentInput!): CreatePaymentPayload!
1894
+ @cost(weight: "10")
1895
+ updatePayment(input: UpdatePaymentInput!): UpdatePaymentPayload!
1896
+ @cost(weight: "10")
1897
+ deletePayment(input: DeletePaymentInput!): DeletePaymentPayload!
1898
+ @cost(weight: "10")
1899
+ createPackageType(input: CreatePackageTypeInput!): CreatePackageTypePayload!
1900
+ @cost(weight: "10")
1901
+ updatePackageType(input: UpdatePackageTypeInput!): UpdatePackageTypePayload!
1902
+ @cost(weight: "10")
1903
+ deletePackageType(input: DeletePackageTypeInput!): DeletePackageTypePayload!
1904
+ @cost(weight: "10")
1905
+ createPackageCategory(
1906
+ input: CreatePackageCategoryInput!
1907
+ ): CreatePackageCategoryPayload! @cost(weight: "10")
1908
+ updatePackageCategory(
1909
+ input: UpdatePackageCategoryInput!
1910
+ ): UpdatePackageCategoryPayload! @cost(weight: "10")
1911
+ deletePackageCategory(
1912
+ input: DeletePackageCategoryInput!
1913
+ ): DeletePackageCategoryPayload! @cost(weight: "10")
1914
+ createOrganizationUser(
1915
+ input: CreateOrganizationUserInput!
1916
+ ): CreateOrganizationUserPayload! @cost(weight: "10")
1917
+ updateOrganizationUser(
1918
+ input: UpdateOrganizationUserInput!
1919
+ ): UpdateOrganizationUserPayload! @cost(weight: "10")
1920
+ deleteOrganizationUser(
1921
+ input: DeleteOrganizationUserInput!
1922
+ ): DeleteOrganizationUserPayload! @cost(weight: "10")
1923
+ updateOrganization(
1924
+ input: UpdateOrganizationInput!
1925
+ ): UpdateOrganizationPayload! @cost(weight: "10")
1926
+ createOrganizationConfig(
1927
+ input: CreateOrganizationConfigInput!
1928
+ ): CreateOrganizationConfigPayload! @cost(weight: "10")
1929
+ updateOrganizationConfig(
1930
+ input: UpdateOrganizationConfigInput!
1931
+ ): UpdateOrganizationConfigPayload! @cost(weight: "10")
1932
+ deleteOrganizationConfig(
1933
+ input: DeleteOrganizationConfigInput!
1934
+ ): DeleteOrganizationConfigPayload! @cost(weight: "10")
1935
+ createWarehouseLocation(
1936
+ input: CreateWarehouseLocationInput!
1937
+ ): CreateWarehouseLocationPayload! @cost(weight: "10")
1938
+ updateWarehouseLocation(
1939
+ input: UpdateWarehouseLocationInput!
1940
+ ): UpdateWarehouseLocationPayload! @cost(weight: "10")
1941
+ deleteWarehouseLocation(
1942
+ input: DeleteWarehouseLocationInput!
1943
+ ): DeleteWarehouseLocationPayload! @cost(weight: "10")
1944
+ createOrderStatus(input: CreateOrderStatusInput!): CreateOrderStatusPayload!
1945
+ @cost(weight: "10")
1946
+ updateOrderStatus(input: UpdateOrderStatusInput!): UpdateOrderStatusPayload!
1947
+ @cost(weight: "10")
1948
+ deleteOrderStatus(input: DeleteOrderStatusInput!): DeleteOrderStatusPayload!
1949
+ @cost(weight: "10")
1950
+ createOrderEntity(input: CreateOrderEntityInput!): CreateOrderEntityPayload!
1951
+ @cost(weight: "10")
1952
+ updateOrderEntity(input: UpdateOrderEntityInput!): UpdateOrderEntityPayload!
1953
+ @cost(weight: "10")
1575
1954
  createRate(input: CreateRateInput!): CreateRatePayload! @cost(weight: "10")
1576
1955
  updateRate(input: UpdateRateInput!): UpdateRatePayload! @cost(weight: "10")
1577
1956
  deleteRate(input: DeleteRateInput!): DeleteRatePayload! @cost(weight: "10")
1578
1957
  importRates(input: ImportRatesInput!): ImportRatesPayload! @cost(weight: "10")
1579
- createOrderDocument(input: CreateOrderDocumentInput!): CreateOrderDocumentPayload! @cost(weight: "10")
1580
- updateOrderDocument(input: UpdateOrderDocumentInput!): UpdateOrderDocumentPayload! @cost(weight: "10")
1581
- deleteOrderDocument(input: DeleteOrderDocumentInput!): DeleteOrderDocumentPayload! @cost(weight: "10")
1582
- createOrderCommodity(input: CreateOrderCommodityInput!): CreateOrderCommodityPayload! @cost(weight: "10")
1583
- updateOrderCommodity(input: UpdateOrderCommodityInput!): UpdateOrderCommodityPayload! @cost(weight: "10")
1584
- deleteOrderCommodity(input: DeleteOrderCommodityInput!): DeleteOrderCommodityPayload! @cost(weight: "10")
1585
- createModeOfTransportation(input: CreateModeOfTransportationInput!): CreateModeOfTransportationPayload!
1586
- @cost(weight: "10")
1587
- updateModeOfTransportation(input: UpdateModeOfTransportationInput!): UpdateModeOfTransportationPayload!
1588
- @cost(weight: "10")
1589
- deleteModeOfTransportation(input: DeleteModeOfTransportationInput!): DeleteModeOfTransportationPayload!
1958
+ createOrderDocument(
1959
+ input: CreateOrderDocumentInput!
1960
+ ): CreateOrderDocumentPayload! @cost(weight: "10")
1961
+ updateOrderDocument(
1962
+ input: UpdateOrderDocumentInput!
1963
+ ): UpdateOrderDocumentPayload! @cost(weight: "10")
1964
+ deleteOrderDocument(
1965
+ input: DeleteOrderDocumentInput!
1966
+ ): DeleteOrderDocumentPayload! @cost(weight: "10")
1967
+ regenerateOrderDocument(
1968
+ input: RegenerateOrderDocumentInput!
1969
+ ): RegenerateOrderDocumentPayload! @cost(weight: "10")
1970
+ createOrderCommodity(
1971
+ input: CreateOrderCommodityInput!
1972
+ ): CreateOrderCommodityPayload! @cost(weight: "10")
1973
+ updateOrderCommodity(
1974
+ input: UpdateOrderCommodityInput!
1975
+ ): UpdateOrderCommodityPayload! @cost(weight: "10")
1976
+ deleteOrderCommodity(
1977
+ input: DeleteOrderCommodityInput!
1978
+ ): DeleteOrderCommodityPayload! @cost(weight: "10")
1979
+ createNote(input: CreateNoteInput!): CreateNotePayload! @cost(weight: "10")
1980
+ updateNote(input: UpdateNoteInput!): UpdateNotePayload! @cost(weight: "10")
1981
+ deleteNote(input: DeleteNoteInput!): DeleteNotePayload! @cost(weight: "10")
1982
+ renameNoteThread(input: RenameNoteThreadInput!): RenameNoteThreadPayload!
1590
1983
  @cost(weight: "10")
1984
+ createModeOfTransportation(
1985
+ input: CreateModeOfTransportationInput!
1986
+ ): CreateModeOfTransportationPayload! @cost(weight: "10")
1987
+ updateModeOfTransportation(
1988
+ input: UpdateModeOfTransportationInput!
1989
+ ): UpdateModeOfTransportationPayload! @cost(weight: "10")
1990
+ deleteModeOfTransportation(
1991
+ input: DeleteModeOfTransportationInput!
1992
+ ): DeleteModeOfTransportationPayload! @cost(weight: "10")
1591
1993
  createLane(input: CreateLaneInput!): CreateLanePayload! @cost(weight: "10")
1592
1994
  updateLane(input: UpdateLaneInput!): UpdateLanePayload! @cost(weight: "10")
1593
1995
  deleteLane(input: DeleteLaneInput!): DeleteLanePayload! @cost(weight: "10")
1594
- createKnowledgeAsset(input: CreateKnowledgeAssetInput!): CreateKnowledgeAssetPayload! @cost(weight: "10")
1595
- updateKnowledgeAsset(input: UpdateKnowledgeAssetInput!): UpdateKnowledgeAssetPayload! @cost(weight: "10")
1596
- deleteKnowledgeAsset(input: DeleteKnowledgeAssetInput!): DeleteKnowledgeAssetPayload! @cost(weight: "10")
1996
+ createKnowledgeAsset(
1997
+ input: CreateKnowledgeAssetInput!
1998
+ ): CreateKnowledgeAssetPayload! @cost(weight: "10")
1999
+ updateKnowledgeAsset(
2000
+ input: UpdateKnowledgeAssetInput!
2001
+ ): UpdateKnowledgeAssetPayload! @cost(weight: "10")
2002
+ deleteKnowledgeAsset(
2003
+ input: DeleteKnowledgeAssetInput!
2004
+ ): DeleteKnowledgeAssetPayload! @cost(weight: "10")
1597
2005
  createJob(input: CreateJobInput!): CreateJobPayload! @cost(weight: "10")
1598
2006
  updateJob(input: UpdateJobInput!): UpdateJobPayload! @cost(weight: "10")
1599
2007
  deleteJob(input: DeleteJobInput!): DeleteJobPayload! @cost(weight: "10")
1600
- createJobStatus(input: CreateJobStatusInput!): CreateJobStatusPayload! @cost(weight: "10")
1601
- updateJobStatus(input: UpdateJobStatusInput!): UpdateJobStatusPayload! @cost(weight: "10")
1602
- deleteJobStatus(input: DeleteJobStatusInput!): DeleteJobStatusPayload! @cost(weight: "10")
1603
- createInventoryItem(input: CreateInventoryItemInput!): CreateInventoryItemPayload! @cost(weight: "10")
1604
- updateInventoryItem(input: UpdateInventoryItemInput!): UpdateInventoryItemPayload! @cost(weight: "10")
1605
- deleteInventoryItem(input: DeleteInventoryItemInput!): DeleteInventoryItemPayload! @cost(weight: "10")
1606
- createEventDefinition(input: CreateEventDefinitionInput!): CreateEventDefinitionPayload! @cost(weight: "10")
1607
- updateEventDefinition(input: UpdateEventDefinitionInput!): UpdateEventDefinitionPayload! @cost(weight: "10")
1608
- deleteEventDefinition(input: DeleteEventDefinitionInput!): DeleteEventDefinitionPayload! @cost(weight: "10")
1609
- createEquipmentType(input: CreateEquipmentTypeInput!): CreateEquipmentTypePayload! @cost(weight: "10")
1610
- updateEquipmentType(input: UpdateEquipmentTypeInput!): UpdateEquipmentTypePayload! @cost(weight: "10")
1611
- deleteEquipmentType(input: DeleteEquipmentTypeInput!): DeleteEquipmentTypePayload! @cost(weight: "10")
1612
- importEquipmentTypes(input: ImportEquipmentTypesInput!): ImportEquipmentTypesPayload! @cost(weight: "10")
1613
- createDivision(input: CreateDivisionInput!): CreateDivisionPayload! @cost(weight: "10")
1614
- updateDivision(input: UpdateDivisionInput!): UpdateDivisionPayload! @cost(weight: "10")
1615
- deleteDivision(input: DeleteDivisionInput!): DeleteDivisionPayload! @cost(weight: "10")
1616
- createUserGroup(input: CreateUserGroupInput!): CreateUserGroupPayload! @cost(weight: "10")
1617
- updateUserGroup(input: UpdateUserGroupInput!): UpdateUserGroupPayload! @cost(weight: "10")
1618
- addUserToUserGroup(input: AddUserToUserGroupInput!): AddUserToUserGroupPayload! @cost(weight: "10")
1619
- deleteUserFromUserGroup(input: DeleteUserFromUserGroupInput!): DeleteUserFromUserGroupPayload! @cost(weight: "10")
1620
- deleteUserGroup(input: DeleteUserGroupInput!): DeleteUserGroupPayload! @cost(weight: "10")
1621
- createDiscount(input: CreateDiscountInput!): CreateDiscountPayload! @cost(weight: "10")
1622
- updateDiscount(input: UpdateDiscountInput!): UpdateDiscountPayload! @cost(weight: "10")
1623
- deleteDiscount(input: DeleteDiscountInput!): DeleteDiscountPayload! @cost(weight: "10")
1624
- createCustomCode(input: CreateCustomCodeInput!): CreateCustomCodePayload! @cost(weight: "10")
1625
- updateCustomCode(input: UpdateCustomCodeInput!): UpdateCustomCodePayload! @cost(weight: "10")
1626
- deleteCustomCode(input: DeleteCustomCodeInput!): DeleteCustomCodePayload! @cost(weight: "10")
1627
- createCurrency(input: CreateCurrencyInput!): CreateCurrencyPayload! @cost(weight: "10")
1628
- updateCurrency(input: UpdateCurrencyInput!): UpdateCurrencyPayload! @cost(weight: "10")
1629
- deleteCurrency(input: DeleteCurrencyInput!): DeleteCurrencyPayload! @cost(weight: "10")
1630
- createContainerType(input: CreateContainerTypeInput!): CreateContainerTypePayload! @cost(weight: "10")
1631
- updateContainerType(input: UpdateContainerTypeInput!): UpdateContainerTypePayload! @cost(weight: "10")
1632
- deleteContainerType(input: DeleteContainerTypeInput!): DeleteContainerTypePayload! @cost(weight: "10")
1633
- createContainerDescription(input: CreateContainerDescriptionInput!): CreateContainerDescriptionPayload!
1634
- @cost(weight: "10")
1635
- updateContainerDescription(input: UpdateContainerDescriptionInput!): UpdateContainerDescriptionPayload!
1636
- @cost(weight: "10")
1637
- deleteContainerDescription(input: DeleteContainerDescriptionInput!): DeleteContainerDescriptionPayload!
1638
- @cost(weight: "10")
1639
- createContact(input: CreateContactInput!): CreateContactPayload! @cost(weight: "10")
1640
- updateContact(input: UpdateContactInput!): UpdateContactPayload! @cost(weight: "10")
1641
- deleteContact(input: DeleteContactInput!): DeleteContactPayload! @cost(weight: "10")
1642
- importContacts(input: ImportContactsInput!): ImportContactsPayload! @cost(weight: "10")
1643
- createContactStatus(input: CreateContactStatusInput!): CreateContactStatusPayload! @cost(weight: "10")
1644
- updateContactStatus(input: UpdateContactStatusInput!): UpdateContactStatusPayload! @cost(weight: "10")
1645
- deleteContactStatus(input: DeleteContactStatusInput!): DeleteContactStatusPayload! @cost(weight: "10")
1646
- updateContactPaymentMethod(input: UpdateContactPaymentMethodInput!): UpdateContactPaymentMethodPayload!
1647
- @cost(weight: "10")
1648
- createContactAddress(input: CreateContactAddressInput!): CreateContactAddressPayload! @cost(weight: "10")
1649
- updateContactAddress(input: UpdateContactAddressInput!): UpdateContactAddressPayload! @cost(weight: "10")
1650
- deleteContactAddress(input: DeleteContactAddressInput!): DeleteContactAddressPayload! @cost(weight: "10")
1651
- createCountry(input: CreateCountryInput!): CreateCountryPayload! @cost(weight: "10")
1652
- updateCountry(input: UpdateCountryInput!): UpdateCountryPayload! @cost(weight: "10")
1653
- deleteCountry(input: DeleteCountryInput!): DeleteCountryPayload! @cost(weight: "10")
1654
- importCountries(input: ImportCountriesInput!): ImportCountriesPayload! @cost(weight: "10")
1655
- createCommodityType(input: CreateCommodityTypeInput!): CreateCommodityTypePayload! @cost(weight: "10")
1656
- updateCommodityType(input: UpdateCommodityTypeInput!): UpdateCommodityTypePayload! @cost(weight: "10")
1657
- deleteCommodityType(input: DeleteCommodityTypeInput!): DeleteCommodityTypePayload! @cost(weight: "10")
1658
- importCommodityTypes(input: ImportCommodityTypesInput!): ImportCommodityTypesPayload! @cost(weight: "10")
1659
- createCommodityTrackingNumber(input: CreateCommodityTrackingNumberInput!): CreateCommodityTrackingNumberPayload!
1660
- @cost(weight: "10")
1661
- updateCommodityTrackingNumber(input: UpdateCommodityTrackingNumberInput!): UpdateCommodityTrackingNumberPayload!
1662
- @cost(weight: "10")
1663
- deleteCommodityTrackingNumber(input: DeleteCommodityTrackingNumberInput!): DeleteCommodityTrackingNumberPayload!
1664
- @cost(weight: "10")
1665
- createCommodityStatus(input: CreateCommodityStatusInput!): CreateCommodityStatusPayload! @cost(weight: "10")
1666
- updateCommodityStatus(input: UpdateCommodityStatusInput!): UpdateCommodityStatusPayload! @cost(weight: "10")
1667
- deleteCommodityStatus(input: DeleteCommodityStatusInput!): DeleteCommodityStatusPayload! @cost(weight: "10")
1668
- createCommodity(input: CreateCommodityInput!): CreateCommodityPayload! @cost(weight: "10")
1669
- updateCommodityV1(input: UpdateCommodityV1Input!): UpdateCommodityV1Payload! @cost(weight: "10")
1670
- updateCommodity(input: UpdateCommodityInput!): UpdateCommodityPayload! @cost(weight: "10")
1671
- importCommodities(input: ImportCommoditiesInput!): ImportCommoditiesPayload! @cost(weight: "10")
1672
- deleteCommodity(input: DeleteCommodityInput!): DeleteCommodityPayload! @cost(weight: "10")
2008
+ createJobStatus(input: CreateJobStatusInput!): CreateJobStatusPayload!
2009
+ @cost(weight: "10")
2010
+ updateJobStatus(input: UpdateJobStatusInput!): UpdateJobStatusPayload!
2011
+ @cost(weight: "10")
2012
+ deleteJobStatus(input: DeleteJobStatusInput!): DeleteJobStatusPayload!
2013
+ @cost(weight: "10")
2014
+ createInventoryItem(
2015
+ input: CreateInventoryItemInput!
2016
+ ): CreateInventoryItemPayload! @cost(weight: "10")
2017
+ updateInventoryItem(
2018
+ input: UpdateInventoryItemInput!
2019
+ ): UpdateInventoryItemPayload! @cost(weight: "10")
2020
+ deleteInventoryItem(
2021
+ input: DeleteInventoryItemInput!
2022
+ ): DeleteInventoryItemPayload! @cost(weight: "10")
2023
+ createEventDefinition(
2024
+ input: CreateEventDefinitionInput!
2025
+ ): CreateEventDefinitionPayload! @cost(weight: "10")
2026
+ updateEventDefinition(
2027
+ input: UpdateEventDefinitionInput!
2028
+ ): UpdateEventDefinitionPayload! @cost(weight: "10")
2029
+ deleteEventDefinition(
2030
+ input: DeleteEventDefinitionInput!
2031
+ ): DeleteEventDefinitionPayload! @cost(weight: "10")
2032
+ createEquipmentType(
2033
+ input: CreateEquipmentTypeInput!
2034
+ ): CreateEquipmentTypePayload! @cost(weight: "10")
2035
+ updateEquipmentType(
2036
+ input: UpdateEquipmentTypeInput!
2037
+ ): UpdateEquipmentTypePayload! @cost(weight: "10")
2038
+ deleteEquipmentType(
2039
+ input: DeleteEquipmentTypeInput!
2040
+ ): DeleteEquipmentTypePayload! @cost(weight: "10")
2041
+ importEquipmentTypes(
2042
+ input: ImportEquipmentTypesInput!
2043
+ ): ImportEquipmentTypesPayload! @cost(weight: "10")
2044
+ createDivision(input: CreateDivisionInput!): CreateDivisionPayload!
2045
+ @cost(weight: "10")
2046
+ updateDivision(input: UpdateDivisionInput!): UpdateDivisionPayload!
2047
+ @cost(weight: "10")
2048
+ deleteDivision(input: DeleteDivisionInput!): DeleteDivisionPayload!
2049
+ @cost(weight: "10")
2050
+ createUserGroup(input: CreateUserGroupInput!): CreateUserGroupPayload!
2051
+ @cost(weight: "10")
2052
+ updateUserGroup(input: UpdateUserGroupInput!): UpdateUserGroupPayload!
2053
+ @cost(weight: "10")
2054
+ addUserToUserGroup(
2055
+ input: AddUserToUserGroupInput!
2056
+ ): AddUserToUserGroupPayload! @cost(weight: "10")
2057
+ deleteUserFromUserGroup(
2058
+ input: DeleteUserFromUserGroupInput!
2059
+ ): DeleteUserFromUserGroupPayload! @cost(weight: "10")
2060
+ deleteUserGroup(input: DeleteUserGroupInput!): DeleteUserGroupPayload!
2061
+ @cost(weight: "10")
2062
+ createDiscount(input: CreateDiscountInput!): CreateDiscountPayload!
2063
+ @cost(weight: "10")
2064
+ updateDiscount(input: UpdateDiscountInput!): UpdateDiscountPayload!
2065
+ @cost(weight: "10")
2066
+ deleteDiscount(input: DeleteDiscountInput!): DeleteDiscountPayload!
2067
+ @cost(weight: "10")
2068
+ createCustomCode(input: CreateCustomCodeInput!): CreateCustomCodePayload!
2069
+ @cost(weight: "10")
2070
+ updateCustomCode(input: UpdateCustomCodeInput!): UpdateCustomCodePayload!
2071
+ @cost(weight: "10")
2072
+ deleteCustomCode(input: DeleteCustomCodeInput!): DeleteCustomCodePayload!
2073
+ @cost(weight: "10")
2074
+ createCurrency(input: CreateCurrencyInput!): CreateCurrencyPayload!
2075
+ @cost(weight: "10")
2076
+ updateCurrency(input: UpdateCurrencyInput!): UpdateCurrencyPayload!
2077
+ @cost(weight: "10")
2078
+ deleteCurrency(input: DeleteCurrencyInput!): DeleteCurrencyPayload!
2079
+ @cost(weight: "10")
2080
+ createContainerType(
2081
+ input: CreateContainerTypeInput!
2082
+ ): CreateContainerTypePayload! @cost(weight: "10")
2083
+ updateContainerType(
2084
+ input: UpdateContainerTypeInput!
2085
+ ): UpdateContainerTypePayload! @cost(weight: "10")
2086
+ deleteContainerType(
2087
+ input: DeleteContainerTypeInput!
2088
+ ): DeleteContainerTypePayload! @cost(weight: "10")
2089
+ createContainerDescription(
2090
+ input: CreateContainerDescriptionInput!
2091
+ ): CreateContainerDescriptionPayload! @cost(weight: "10")
2092
+ updateContainerDescription(
2093
+ input: UpdateContainerDescriptionInput!
2094
+ ): UpdateContainerDescriptionPayload! @cost(weight: "10")
2095
+ deleteContainerDescription(
2096
+ input: DeleteContainerDescriptionInput!
2097
+ ): DeleteContainerDescriptionPayload! @cost(weight: "10")
2098
+ createContact(input: CreateContactInput!): CreateContactPayload!
2099
+ @cost(weight: "10")
2100
+ updateContact(input: UpdateContactInput!): UpdateContactPayload!
2101
+ @cost(weight: "10")
2102
+ deleteContact(input: DeleteContactInput!): DeleteContactPayload!
2103
+ @cost(weight: "10")
2104
+ importContacts(input: ImportContactsInput!): ImportContactsPayload!
2105
+ @cost(weight: "10")
2106
+ createContactStatus(
2107
+ input: CreateContactStatusInput!
2108
+ ): CreateContactStatusPayload! @cost(weight: "10")
2109
+ updateContactStatus(
2110
+ input: UpdateContactStatusInput!
2111
+ ): UpdateContactStatusPayload! @cost(weight: "10")
2112
+ deleteContactStatus(
2113
+ input: DeleteContactStatusInput!
2114
+ ): DeleteContactStatusPayload! @cost(weight: "10")
2115
+ updateContactPaymentMethod(
2116
+ input: UpdateContactPaymentMethodInput!
2117
+ ): UpdateContactPaymentMethodPayload! @cost(weight: "10")
2118
+ createContactAddress(
2119
+ input: CreateContactAddressInput!
2120
+ ): CreateContactAddressPayload! @cost(weight: "10")
2121
+ updateContactAddress(
2122
+ input: UpdateContactAddressInput!
2123
+ ): UpdateContactAddressPayload! @cost(weight: "10")
2124
+ deleteContactAddress(
2125
+ input: DeleteContactAddressInput!
2126
+ ): DeleteContactAddressPayload! @cost(weight: "10")
2127
+ createCountry(input: CreateCountryInput!): CreateCountryPayload!
2128
+ @cost(weight: "10")
2129
+ updateCountry(input: UpdateCountryInput!): UpdateCountryPayload!
2130
+ @cost(weight: "10")
2131
+ deleteCountry(input: DeleteCountryInput!): DeleteCountryPayload!
2132
+ @cost(weight: "10")
2133
+ importCountries(input: ImportCountriesInput!): ImportCountriesPayload!
2134
+ @cost(weight: "10")
2135
+ createCommodityType(
2136
+ input: CreateCommodityTypeInput!
2137
+ ): CreateCommodityTypePayload! @cost(weight: "10")
2138
+ updateCommodityType(
2139
+ input: UpdateCommodityTypeInput!
2140
+ ): UpdateCommodityTypePayload! @cost(weight: "10")
2141
+ deleteCommodityType(
2142
+ input: DeleteCommodityTypeInput!
2143
+ ): DeleteCommodityTypePayload! @cost(weight: "10")
2144
+ importCommodityTypes(
2145
+ input: ImportCommodityTypesInput!
2146
+ ): ImportCommodityTypesPayload! @cost(weight: "10")
2147
+ createCommodityTrackingNumber(
2148
+ input: CreateCommodityTrackingNumberInput!
2149
+ ): CreateCommodityTrackingNumberPayload! @cost(weight: "10")
2150
+ updateCommodityTrackingNumber(
2151
+ input: UpdateCommodityTrackingNumberInput!
2152
+ ): UpdateCommodityTrackingNumberPayload! @cost(weight: "10")
2153
+ deleteCommodityTrackingNumber(
2154
+ input: DeleteCommodityTrackingNumberInput!
2155
+ ): DeleteCommodityTrackingNumberPayload! @cost(weight: "10")
2156
+ createCommodityStatus(
2157
+ input: CreateCommodityStatusInput!
2158
+ ): CreateCommodityStatusPayload! @cost(weight: "10")
2159
+ updateCommodityStatus(
2160
+ input: UpdateCommodityStatusInput!
2161
+ ): UpdateCommodityStatusPayload! @cost(weight: "10")
2162
+ deleteCommodityStatus(
2163
+ input: DeleteCommodityStatusInput!
2164
+ ): DeleteCommodityStatusPayload! @cost(weight: "10")
2165
+ createCommodity(input: CreateCommodityInput!): CreateCommodityPayload!
2166
+ @cost(weight: "10")
2167
+ updateCommodityV1(input: UpdateCommodityV1Input!): UpdateCommodityV1Payload!
2168
+ @cost(weight: "10")
2169
+ updateCommodity(input: UpdateCommodityInput!): UpdateCommodityPayload!
2170
+ @cost(weight: "10")
2171
+ importCommodities(input: ImportCommoditiesInput!): ImportCommoditiesPayload!
2172
+ @cost(weight: "10")
2173
+ deleteCommodity(input: DeleteCommodityInput!): DeleteCommodityPayload!
2174
+ @cost(weight: "10")
1673
2175
  createCity(input: CreateCityInput!): CreateCityPayload! @cost(weight: "10")
1674
2176
  updateCity(input: UpdateCityInput!): UpdateCityPayload! @cost(weight: "10")
1675
2177
  deleteCity(input: DeleteCityInput!): DeleteCityPayload! @cost(weight: "10")
1676
- createCharge(input: CreateChargeInput!): CreateChargePayload! @cost(weight: "10")
1677
- updateCharge(input: UpdateChargeInput!): UpdateChargePayload! @cost(weight: "10")
1678
- deleteCharge(input: DeleteChargeInput!): DeleteChargePayload! @cost(weight: "10")
1679
- createCarrierEquipment(input: CreateCarrierEquipmentInput!): CreateCarrierEquipmentPayload! @cost(weight: "10")
1680
- updateCarrierEquipment(input: UpdateCarrierEquipmentInput!): UpdateCarrierEquipmentPayload! @cost(weight: "10")
1681
- deleteCarrierEquipment(input: DeleteCarrierEquipmentInput!): DeleteCarrierEquipmentPayload! @cost(weight: "10")
2178
+ createCharge(input: CreateChargeInput!): CreateChargePayload!
2179
+ @cost(weight: "10")
2180
+ updateCharge(input: UpdateChargeInput!): UpdateChargePayload!
2181
+ @cost(weight: "10")
2182
+ deleteCharge(input: DeleteChargeInput!): DeleteChargePayload!
2183
+ @cost(weight: "10")
2184
+ createCarrierEquipment(
2185
+ input: CreateCarrierEquipmentInput!
2186
+ ): CreateCarrierEquipmentPayload! @cost(weight: "10")
2187
+ updateCarrierEquipment(
2188
+ input: UpdateCarrierEquipmentInput!
2189
+ ): UpdateCarrierEquipmentPayload! @cost(weight: "10")
2190
+ deleteCarrierEquipment(
2191
+ input: DeleteCarrierEquipmentInput!
2192
+ ): DeleteCarrierEquipmentPayload! @cost(weight: "10")
1682
2193
  createCalendarAvailabilityBlock(
1683
2194
  input: CreateCalendarAvailabilityBlockInput!
1684
2195
  ): CreateCalendarAvailabilityBlockPayload! @cost(weight: "10")
@@ -1688,50 +2199,147 @@ type Mutation {
1688
2199
  deleteCalendarAvailabilityBlock(
1689
2200
  input: DeleteCalendarAvailabilityBlockInput!
1690
2201
  ): DeleteCalendarAvailabilityBlockPayload! @cost(weight: "10")
1691
- createCalendarBusinessHour(input: CreateCalendarBusinessHourInput!): CreateCalendarBusinessHourPayload!
1692
- @cost(weight: "10")
1693
- updateCalendarBusinessHour(input: UpdateCalendarBusinessHourInput!): UpdateCalendarBusinessHourPayload!
1694
- @cost(weight: "10")
1695
- deleteCalendarBusinessHour(input: DeleteCalendarBusinessHourInput!): DeleteCalendarBusinessHourPayload!
1696
- @cost(weight: "10")
1697
- updateCalendarBusinessHours(input: UpdateCalendarBusinessHoursInput!): UpdateCalendarBusinessHoursPayload!
1698
- @cost(weight: "10")
1699
- createCalendarEvent(input: CreateCalendarEventInput!): CreateCalendarEventPayload! @cost(weight: "10")
1700
- updateCalendarEvent(input: UpdateCalendarEventInput!): UpdateCalendarEventPayload! @cost(weight: "10")
1701
- deleteCalendarEvent(input: DeleteCalendarEventInput!): DeleteCalendarEventPayload! @cost(weight: "10")
1702
- createCalendar(input: CreateCalendarInput!): CreateCalendarPayload! @cost(weight: "10")
1703
- updateCalendar(input: UpdateCalendarInput!): UpdateCalendarPayload! @cost(weight: "10")
1704
- deleteCalendar(input: DeleteCalendarInput!): DeleteCalendarPayload! @cost(weight: "10")
1705
- createAttachment(input: CreateAttachmentInput!): CreateAttachmentPayload! @cost(weight: "10")
1706
- updateAttachment(input: UpdateAttachmentInput!): UpdateAttachmentPayload! @cost(weight: "10")
1707
- deleteAttachment(input: DeleteAttachmentInput!): DeleteAttachmentPayload! @cost(weight: "10")
1708
- createAppModule(input: CreateAppModuleInput!): CreateAppModulePayload! @cost(weight: "10")
1709
- updateAppModule(input: UpdateAppModuleInput!): UpdateAppModulePayload! @cost(weight: "10")
1710
- deleteAppModule(input: DeleteAppModuleInput!): DeleteAppModulePayload! @cost(weight: "10")
1711
- createAppManifest(input: CreateAppManifestInput!): CreateAppManifestPayload! @cost(weight: "10")
1712
- updateAppManifest(input: UpdateAppManifestInput!): UpdateAppManifestPayload! @cost(weight: "10")
1713
- installAppManifest(input: InstallAppManifestInput!): InstallAppManifestPayload! @cost(weight: "10")
1714
- publishAppManifest(input: PublishAppManifestInput!): PublishAppManifestPayload! @cost(weight: "10")
1715
- deleteAppManifest(input: DeleteAppManifestInput!): DeleteAppManifestPayload! @cost(weight: "10")
1716
- mergeAppManifest(input: MergeAppManifestInput!): MergeAppManifestPayload! @cost(weight: "10")
1717
- createActionEvent(input: CreateActionEventInput!): CreateActionEventPayload! @cost(weight: "10")
1718
- updateActionEvent(input: UpdateActionEventInput!): UpdateActionEventPayload! @cost(weight: "10")
1719
- deleteActionEvent(input: DeleteActionEventInput!): DeleteActionEventPayload! @cost(weight: "10")
1720
- createOrder(input: CreateOrderInput!): CreateOrderPayload! @cost(weight: "10")
1721
- updateOrder(input: UpdateOrderInput!): UpdateOrderPayload! @cost(weight: "10")
1722
- deleteOrder(input: DeleteOrderInput!): DeleteOrderPayload! @cost(weight: "10")
1723
- createAccountingTransaction(input: CreateAccountingTransactionInput!): CreateAccountingTransactionPayload!
2202
+ createCalendarBusinessHour(
2203
+ input: CreateCalendarBusinessHourInput!
2204
+ ): CreateCalendarBusinessHourPayload! @cost(weight: "10")
2205
+ updateCalendarBusinessHour(
2206
+ input: UpdateCalendarBusinessHourInput!
2207
+ ): UpdateCalendarBusinessHourPayload! @cost(weight: "10")
2208
+ deleteCalendarBusinessHour(
2209
+ input: DeleteCalendarBusinessHourInput!
2210
+ ): DeleteCalendarBusinessHourPayload! @cost(weight: "10")
2211
+ updateCalendarBusinessHours(
2212
+ input: UpdateCalendarBusinessHoursInput!
2213
+ ): UpdateCalendarBusinessHoursPayload! @cost(weight: "10")
2214
+ createCalendarEvent(
2215
+ input: CreateCalendarEventInput!
2216
+ ): CreateCalendarEventPayload! @cost(weight: "10")
2217
+ updateCalendarEvent(
2218
+ input: UpdateCalendarEventInput!
2219
+ ): UpdateCalendarEventPayload! @cost(weight: "10")
2220
+ deleteCalendarEvent(
2221
+ input: DeleteCalendarEventInput!
2222
+ ): DeleteCalendarEventPayload! @cost(weight: "10")
2223
+ createCalendar(input: CreateCalendarInput!): CreateCalendarPayload!
2224
+ @cost(weight: "10")
2225
+ updateCalendar(input: UpdateCalendarInput!): UpdateCalendarPayload!
2226
+ @cost(weight: "10")
2227
+ deleteCalendar(input: DeleteCalendarInput!): DeleteCalendarPayload!
2228
+ @cost(weight: "10")
2229
+ createAttachment(input: CreateAttachmentInput!): CreateAttachmentPayload!
2230
+ @cost(weight: "10")
2231
+ updateAttachment(input: UpdateAttachmentInput!): UpdateAttachmentPayload!
2232
+ @cost(weight: "10")
2233
+ deleteAttachment(input: DeleteAttachmentInput!): DeleteAttachmentPayload!
2234
+ @cost(weight: "10")
2235
+ createAppModule(input: CreateAppModuleInput!): CreateAppModulePayload!
2236
+ @cost(weight: "10")
2237
+ updateAppModule(input: UpdateAppModuleInput!): UpdateAppModulePayload!
2238
+ @cost(weight: "10")
2239
+ deleteAppModule(input: DeleteAppModuleInput!): DeleteAppModulePayload!
2240
+ @cost(weight: "10")
2241
+ createAppManifest(input: CreateAppManifestInput!): CreateAppManifestPayload!
2242
+ @cost(weight: "10")
2243
+ updateAppManifest(input: UpdateAppManifestInput!): UpdateAppManifestPayload!
2244
+ @cost(weight: "10")
2245
+ installAppManifest(
2246
+ input: InstallAppManifestInput!
2247
+ ): InstallAppManifestPayload! @cost(weight: "10")
2248
+ publishAppManifest(
2249
+ input: PublishAppManifestInput!
2250
+ ): PublishAppManifestPayload! @cost(weight: "10")
2251
+ deleteAppManifest(input: DeleteAppManifestInput!): DeleteAppManifestPayload!
2252
+ @cost(weight: "10")
2253
+ mergeAppManifest(input: MergeAppManifestInput!): MergeAppManifestPayload!
1724
2254
  @cost(weight: "10")
1725
- updateAccountingTransaction(input: UpdateAccountingTransactionInput!): UpdateAccountingTransactionPayload!
2255
+ createApiCredential(
2256
+ input: CreateApiCredentialInput!
2257
+ ): CreateApiCredentialPayload! @cost(weight: "10")
2258
+ updateApiCredential(
2259
+ input: UpdateApiCredentialInput!
2260
+ ): UpdateApiCredentialPayload! @cost(weight: "10")
2261
+ regenerateApiCredentialSecret(
2262
+ input: RegenerateApiCredentialSecretInput!
2263
+ ): RegenerateApiCredentialSecretPayload! @cost(weight: "10")
2264
+ deleteApiCredential(
2265
+ input: DeleteApiCredentialInput!
2266
+ ): DeleteApiCredentialPayload! @cost(weight: "10")
2267
+ enableApiCredential(
2268
+ input: EnableApiCredentialInput!
2269
+ ): EnableApiCredentialPayload! @cost(weight: "10")
2270
+ disableApiCredential(
2271
+ input: DisableApiCredentialInput!
2272
+ ): DisableApiCredentialPayload! @cost(weight: "10")
2273
+ createActionEvent(input: CreateActionEventInput!): CreateActionEventPayload!
1726
2274
  @cost(weight: "10")
1727
- deleteAccountingTransaction(input: DeleteAccountingTransactionInput!): DeleteAccountingTransactionPayload!
2275
+ updateActionEvent(input: UpdateActionEventInput!): UpdateActionEventPayload!
1728
2276
  @cost(weight: "10")
1729
- createAccountingItem(input: CreateAccountingItemInput!): CreateAccountingItemPayload! @cost(weight: "10")
1730
- updateAccountingItem(input: UpdateAccountingItemInput!): UpdateAccountingItemPayload! @cost(weight: "10")
1731
- deleteAccountingItem(input: DeleteAccountingItemInput!): DeleteAccountingItemPayload! @cost(weight: "10")
1732
- createAccountingAccount(input: CreateAccountingAccountInput!): CreateAccountingAccountPayload! @cost(weight: "10")
1733
- updateAccountingAccount(input: UpdateAccountingAccountInput!): UpdateAccountingAccountPayload! @cost(weight: "10")
1734
- deleteAccountingAccount(input: DeleteAccountingAccountInput!): DeleteAccountingAccountPayload! @cost(weight: "10")
2277
+ deleteActionEvent(input: DeleteActionEventInput!): DeleteActionEventPayload!
2278
+ @cost(weight: "10")
2279
+ createOrder(input: CreateOrderInput!): CreateOrderPayload! @cost(weight: "10")
2280
+ updateOrder(input: UpdateOrderInput!): UpdateOrderPayload! @cost(weight: "10")
2281
+ deleteOrder(input: DeleteOrderInput!): DeleteOrderPayload! @cost(weight: "10")
2282
+ createAccountingTransaction(
2283
+ input: CreateAccountingTransactionInput!
2284
+ ): CreateAccountingTransactionPayload! @cost(weight: "10")
2285
+ updateAccountingTransaction(
2286
+ input: UpdateAccountingTransactionInput!
2287
+ ): UpdateAccountingTransactionPayload! @cost(weight: "10")
2288
+ deleteAccountingTransaction(
2289
+ input: DeleteAccountingTransactionInput!
2290
+ ): DeleteAccountingTransactionPayload! @cost(weight: "10")
2291
+ linkChargesToAccountingTransaction(
2292
+ input: LinkChargesToAccountingTransactionInput!
2293
+ ): LinkChargesToAccountingTransactionPayload! @cost(weight: "10")
2294
+ unlinkChargesFromAccountingTransaction(
2295
+ input: UnlinkChargesFromAccountingTransactionInput!
2296
+ ): UnlinkChargesFromAccountingTransactionPayload! @cost(weight: "10")
2297
+ createAccountingItem(
2298
+ input: CreateAccountingItemInput!
2299
+ ): CreateAccountingItemPayload! @cost(weight: "10")
2300
+ updateAccountingItem(
2301
+ input: UpdateAccountingItemInput!
2302
+ ): UpdateAccountingItemPayload! @cost(weight: "10")
2303
+ deleteAccountingItem(
2304
+ input: DeleteAccountingItemInput!
2305
+ ): DeleteAccountingItemPayload! @cost(weight: "10")
2306
+ createAccountingAccount(
2307
+ input: CreateAccountingAccountInput!
2308
+ ): CreateAccountingAccountPayload! @cost(weight: "10")
2309
+ updateAccountingAccount(
2310
+ input: UpdateAccountingAccountInput!
2311
+ ): UpdateAccountingAccountPayload! @cost(weight: "10")
2312
+ deleteAccountingAccount(
2313
+ input: DeleteAccountingAccountInput!
2314
+ ): DeleteAccountingAccountPayload! @cost(weight: "10")
2315
+ }
2316
+
2317
+ "A segment of a collection."
2318
+ type NoteThreadsCollectionSegment {
2319
+ "Information to aid in pagination."
2320
+ pageInfo: CollectionSegmentInfo!
2321
+ "A flattened list of the items."
2322
+ items: [noteThread!]
2323
+ totalCount: Int! @cost(weight: "10")
2324
+ }
2325
+
2326
+ "A segment of a collection."
2327
+ type NotesByThreadNameCollectionSegment {
2328
+ "Information to aid in pagination."
2329
+ pageInfo: CollectionSegmentInfo!
2330
+ "A flattened list of the items."
2331
+ items: [note!]
2332
+ totalCount: Int! @cost(weight: "10")
2333
+ }
2334
+
2335
+ type OrderAllTagsGqlDto {
2336
+ orderId: Int!
2337
+ organizationId: Int!
2338
+ tagId: Int!
2339
+ tagName: String!
2340
+ tagDescription: String
2341
+ tagEntityName: String!
2342
+ customValues: MapOfObject
1735
2343
  }
1736
2344
 
1737
2345
  "A segment of a collection."
@@ -1805,6 +2413,34 @@ type OrderSummaryGqlDto {
1805
2413
  billManagerShippers: [ManagersContactDto!]!
1806
2414
  }
1807
2415
 
2416
+ type OrderTagGqlDto {
2417
+ orderId: Int!
2418
+ tagId: Int!
2419
+ tag: tagItem
2420
+ customValues: MapOfObject
2421
+ createdBy: String
2422
+ created: DateTime!
2423
+ lastModifiedBy: String
2424
+ lastModified: DateTime!
2425
+ }
2426
+
2427
+ type OrderTagSummaryDto {
2428
+ totalTags: Int!
2429
+ directTags: Int!
2430
+ commodityTags: Int!
2431
+ tagNames: [String!]!
2432
+ tagIds: [Int!]!
2433
+ }
2434
+
2435
+ "A segment of a collection."
2436
+ type OrderTagsCollectionSegment {
2437
+ "Information to aid in pagination."
2438
+ pageInfo: CollectionSegmentInfo!
2439
+ "A flattened list of the items."
2440
+ items: [OrderTagGqlDto!]
2441
+ totalCount: Int! @cost(weight: "10")
2442
+ }
2443
+
1808
2444
  "A segment of a collection."
1809
2445
  type OrdersCollectionSegment {
1810
2446
  "Information to aid in pagination."
@@ -1832,6 +2468,15 @@ type OrganizationConfigsCollectionSegment {
1832
2468
  totalCount: Int! @cost(weight: "10")
1833
2469
  }
1834
2470
 
2471
+ "A segment of a collection."
2472
+ type OrganizationUsersCollectionSegment {
2473
+ "Information to aid in pagination."
2474
+ pageInfo: CollectionSegmentInfo!
2475
+ "A flattened list of the items."
2476
+ items: [organizationUser!]
2477
+ totalCount: Int! @cost(weight: "10")
2478
+ }
2479
+
1835
2480
  "A segment of a collection."
1836
2481
  type OrganizationsCollectionSegment {
1837
2482
  "Information to aid in pagination."
@@ -1925,7 +2570,8 @@ type PublishAppManifestPayload {
1925
2570
  }
1926
2571
 
1927
2572
  type Query {
1928
- workflow(organizationId: Int!, workflowId: UUID!): workflow @cost(weight: "10")
2573
+ workflow(organizationId: Int!, workflowId: UUID!): workflow
2574
+ @cost(weight: "10")
1929
2575
  workflows(
1930
2576
  skip: Int
1931
2577
  take: Int
@@ -1942,7 +2588,28 @@ type Query {
1942
2588
  requireOneSlicingArgument: false
1943
2589
  )
1944
2590
  @cost(weight: "10")
1945
- warehouseZone(organizationId: Int!, warehouseZoneId: Int!): warehouseZone @cost(weight: "10")
2591
+ workflowExecution(
2592
+ executionId: UUID!
2593
+ organizationId: Int!
2594
+ ): workflowExecution @cost(weight: "10")
2595
+ workflowExecutions(
2596
+ skip: Int
2597
+ take: Int
2598
+ workflowId: UUID!
2599
+ organizationId: Int!
2600
+ filter: String
2601
+ orderBy: String
2602
+ ): WorkflowExecutionsCollectionSegment
2603
+ @listSize(
2604
+ assumedSize: 10000
2605
+ slicingArguments: ["take"]
2606
+ slicingArgumentDefaultValue: 10
2607
+ sizedFields: ["items"]
2608
+ requireOneSlicingArgument: false
2609
+ )
2610
+ @cost(weight: "10")
2611
+ warehouseZone(organizationId: Int!, warehouseZoneId: Int!): warehouseZone
2612
+ @cost(weight: "10")
1946
2613
  warehouseZones(
1947
2614
  skip: Int
1948
2615
  take: Int
@@ -2012,7 +2679,8 @@ type Query {
2012
2679
  currentUser: user @cost(weight: "10")
2013
2680
  permissions(organizationId: Int!): [AppPermissionGqlDto]! @cost(weight: "10")
2014
2681
  userContact(organizationId: Int!): contact @cost(weight: "10")
2015
- userSetting(organizationId: Int!, userSettingId: Int!): userSetting @cost(weight: "10")
2682
+ userSetting(organizationId: Int!, userSettingId: Int!): userSetting
2683
+ @cost(weight: "10")
2016
2684
  userSettings(
2017
2685
  skip: Int
2018
2686
  take: Int
@@ -2029,7 +2697,11 @@ type Query {
2029
2697
  requireOneSlicingArgument: false
2030
2698
  )
2031
2699
  @cost(weight: "10")
2032
- userGroupRole(organizationId: Int!, roleId: String!, userGroupId: Int!): userGroupRole @cost(weight: "10")
2700
+ userGroupRole(
2701
+ organizationId: Int!
2702
+ roleId: String!
2703
+ userGroupId: Int!
2704
+ ): userGroupRole @cost(weight: "10")
2033
2705
  userGroupRoles(
2034
2706
  skip: Int
2035
2707
  take: Int
@@ -2064,7 +2736,8 @@ type Query {
2064
2736
  )
2065
2737
  @cost(weight: "10")
2066
2738
  contactUser: contact @cost(weight: "10")
2067
- trackingEvent(organizationId: Int!, trackingEventId: Int!): trackingEvent @cost(weight: "10")
2739
+ trackingEvent(organizationId: Int!, trackingEventId: Int!): trackingEvent
2740
+ @cost(weight: "10")
2068
2741
  trackingEvents(
2069
2742
  skip: Int
2070
2743
  take: Int
@@ -2081,7 +2754,49 @@ type Query {
2081
2754
  requireOneSlicingArgument: false
2082
2755
  )
2083
2756
  @cost(weight: "10")
2084
- state(organizationId: Int!, countryCode: String!, stateCode: String!): state @cost(weight: "10")
2757
+ tag(
2758
+ organizationId: Int!
2759
+ tagId: Int!
2760
+ includeDeleted: Boolean! = false
2761
+ ): tagItem @cost(weight: "10")
2762
+ tags(
2763
+ skip: Int
2764
+ take: Int
2765
+ organizationId: Int!
2766
+ entityName: String
2767
+ filter: String
2768
+ limit: Int! = 100
2769
+ orderBy: String
2770
+ offset: Int! = 0
2771
+ search: String
2772
+ includeDeleted: Boolean! = false
2773
+ ): TagsCollectionSegment
2774
+ @listSize(
2775
+ assumedSize: 10000
2776
+ slicingArguments: ["take"]
2777
+ slicingArgumentDefaultValue: 10
2778
+ sizedFields: ["items"]
2779
+ requireOneSlicingArgument: false
2780
+ )
2781
+ @cost(weight: "10")
2782
+ orderTags(
2783
+ skip: Int
2784
+ take: Int
2785
+ organizationId: Int!
2786
+ orderId: Int!
2787
+ limit: Int! = 100
2788
+ offset: Int! = 0
2789
+ ): OrderTagsCollectionSegment
2790
+ @listSize(
2791
+ assumedSize: 10000
2792
+ slicingArguments: ["take"]
2793
+ slicingArgumentDefaultValue: 10
2794
+ sizedFields: ["items"]
2795
+ requireOneSlicingArgument: false
2796
+ )
2797
+ @cost(weight: "10")
2798
+ state(organizationId: Int!, countryCode: String!, stateCode: String!): state
2799
+ @cost(weight: "10")
2085
2800
  states(
2086
2801
  skip: Int
2087
2802
  take: Int
@@ -2149,7 +2864,11 @@ type Query {
2149
2864
  requireOneSlicingArgument: false
2150
2865
  )
2151
2866
  @cost(weight: "10")
2152
- routeRouteLeg(organizationId: Int!, routeId: Int!, routeLegId: Int!): routeRouteLeg @cost(weight: "10")
2867
+ routeRouteLeg(
2868
+ organizationId: Int!
2869
+ routeId: Int!
2870
+ routeLegId: Int!
2871
+ ): routeRouteLeg @cost(weight: "10")
2153
2872
  routeRouteLegs(
2154
2873
  skip: Int
2155
2874
  take: Int
@@ -2235,7 +2954,8 @@ type Query {
2235
2954
  requireOneSlicingArgument: false
2236
2955
  )
2237
2956
  @cost(weight: "10")
2238
- paymentTerm(organizationId: Int!, paymentTermId: Int!): paymentTerm @cost(weight: "10")
2957
+ paymentTerm(organizationId: Int!, paymentTermId: Int!): paymentTerm
2958
+ @cost(weight: "10")
2239
2959
  paymentTerms(
2240
2960
  skip: Int
2241
2961
  take: Int
@@ -2269,7 +2989,8 @@ type Query {
2269
2989
  requireOneSlicingArgument: false
2270
2990
  )
2271
2991
  @cost(weight: "10")
2272
- packageType(organizationId: Int!, packageTypeId: Int!): packageType @cost(weight: "10")
2992
+ packageType(organizationId: Int!, packageTypeId: Int!): packageType
2993
+ @cost(weight: "10")
2273
2994
  packageTypes(
2274
2995
  skip: Int
2275
2996
  take: Int
@@ -2286,7 +3007,10 @@ type Query {
2286
3007
  requireOneSlicingArgument: false
2287
3008
  )
2288
3009
  @cost(weight: "10")
2289
- packageCategory(organizationId: Int!, packageCategoryCode: String!): packageCategory @cost(weight: "10")
3010
+ packageCategory(
3011
+ organizationId: Int!
3012
+ packageCategoryCode: String!
3013
+ ): packageCategory @cost(weight: "10")
2290
3014
  packageCategories(
2291
3015
  skip: Int
2292
3016
  take: Int
@@ -2303,8 +3027,33 @@ type Query {
2303
3027
  requireOneSlicingArgument: false
2304
3028
  )
2305
3029
  @cost(weight: "10")
3030
+ organizationUser(organizationId: Int!, contactId: Int!): organizationUser
3031
+ @cost(weight: "10")
3032
+ organizationUsers(
3033
+ skip: Int
3034
+ take: Int
3035
+ organizationId: Int!
3036
+ parentContactId: Int
3037
+ filter: String
3038
+ search: String
3039
+ orderBy: String
3040
+ ): OrganizationUsersCollectionSegment
3041
+ @listSize(
3042
+ assumedSize: 10000
3043
+ slicingArguments: ["take"]
3044
+ slicingArgumentDefaultValue: 10
3045
+ sizedFields: ["items"]
3046
+ requireOneSlicingArgument: false
3047
+ )
3048
+ @cost(weight: "10")
2306
3049
  organization(organizationId: Int!): organization @cost(weight: "10")
2307
- organizations(skip: Int, take: Int, filter: String, search: String, orderBy: String): OrganizationsCollectionSegment
3050
+ organizations(
3051
+ skip: Int
3052
+ take: Int
3053
+ filter: String
3054
+ search: String
3055
+ orderBy: String
3056
+ ): OrganizationsCollectionSegment
2308
3057
  @listSize(
2309
3058
  assumedSize: 10000
2310
3059
  slicingArguments: ["take"]
@@ -2313,9 +3062,13 @@ type Query {
2313
3062
  requireOneSlicingArgument: false
2314
3063
  )
2315
3064
  @cost(weight: "10")
2316
- customValueAttachment(customValueName: String!): AttachmentGqlDto @cost(weight: "10")
2317
- organizationConfig(organizationId: Int!, organizationConfigId: Int, configName: String): organizationConfig
3065
+ customValueAttachment(customValueName: String!): AttachmentGqlDto
2318
3066
  @cost(weight: "10")
3067
+ organizationConfig(
3068
+ organizationId: Int!
3069
+ organizationConfigId: Int
3070
+ configName: String
3071
+ ): organizationConfig @cost(weight: "10")
2319
3072
  organizationConfigs(
2320
3073
  skip: Int
2321
3074
  take: Int
@@ -2332,7 +3085,10 @@ type Query {
2332
3085
  requireOneSlicingArgument: false
2333
3086
  )
2334
3087
  @cost(weight: "10")
2335
- warehouseLocation(organizationId: Int!, warehouseLocationId: Int!): warehouseLocation @cost(weight: "10")
3088
+ warehouseLocation(
3089
+ organizationId: Int!
3090
+ warehouseLocationId: Int!
3091
+ ): warehouseLocation @cost(weight: "10")
2336
3092
  warehouseLocations(
2337
3093
  skip: Int
2338
3094
  take: Int
@@ -2349,7 +3105,8 @@ type Query {
2349
3105
  requireOneSlicingArgument: false
2350
3106
  )
2351
3107
  @cost(weight: "10")
2352
- orderStatus(organizationId: Int!, orderStatusId: Int!): orderStatus @cost(weight: "10")
3108
+ orderStatus(organizationId: Int!, orderStatusId: Int!): orderStatus
3109
+ @cost(weight: "10")
2353
3110
  orderStatuses(
2354
3111
  skip: Int
2355
3112
  take: Int
@@ -2366,7 +3123,11 @@ type Query {
2366
3123
  requireOneSlicingArgument: false
2367
3124
  )
2368
3125
  @cost(weight: "10")
2369
- orderEntity(organizationId: Int!, orderId: Int!, orderEntityId: Int!): orderEntity @cost(weight: "10")
3126
+ orderEntity(
3127
+ organizationId: Int!
3128
+ orderId: Int!
3129
+ orderEntityId: Int!
3130
+ ): orderEntity @cost(weight: "10")
2370
3131
  orderEntities(
2371
3132
  skip: Int
2372
3133
  take: Int
@@ -2390,7 +3151,8 @@ type Query {
2390
3151
  search: String
2391
3152
  orderBy: String
2392
3153
  ): [AttachmentGqlDto!]! @cost(weight: "10")
2393
- orderDocument(organizationId: Int!, orderDocumentId: Int!): orderDocument @cost(weight: "10")
3154
+ orderDocument(organizationId: Int!, orderDocumentId: Int!): orderDocument
3155
+ @cost(weight: "10")
2394
3156
  orderDocuments(
2395
3157
  skip: Int
2396
3158
  take: Int
@@ -2434,7 +3196,12 @@ type Query {
2434
3196
  orderBy: String
2435
3197
  include: String
2436
3198
  ): ExportResult! @cost(weight: "10")
2437
- ratesByRateIds(skip: Int, take: Int, organizationId: Int!, rateIds: [Int!]): RatesByRateIdsCollectionSegment
3199
+ ratesByRateIds(
3200
+ skip: Int
3201
+ take: Int
3202
+ organizationId: Int!
3203
+ rateIds: [Int!]
3204
+ ): RatesByRateIdsCollectionSegment
2438
3205
  @listSize(
2439
3206
  assumedSize: 10000
2440
3207
  slicingArguments: ["take"]
@@ -2445,7 +3212,11 @@ type Query {
2445
3212
  @cost(weight: "10")
2446
3213
  estimatedCost(lang: String = "en-US"): String! @cost(weight: "10")
2447
3214
  carrier: contact @cost(weight: "10")
2448
- orderCommodity(organizationId: Int!, orderId: Int!, commodityId: Int!): orderCommodity @cost(weight: "10")
3215
+ orderCommodity(
3216
+ organizationId: Int!
3217
+ orderId: Int!
3218
+ commodityId: Int!
3219
+ ): orderCommodity @cost(weight: "10")
2449
3220
  orderCommodities(
2450
3221
  skip: Int
2451
3222
  take: Int
@@ -2462,14 +3233,53 @@ type Query {
2462
3233
  requireOneSlicingArgument: false
2463
3234
  )
2464
3235
  @cost(weight: "10")
2465
- allOrderCommodities(
3236
+ allOrderCommodities(
3237
+ skip: Int
3238
+ take: Int
3239
+ organizationId: Int!
3240
+ filter: String
3241
+ search: String
3242
+ orderBy: String
3243
+ ): AllOrderCommoditiesCollectionSegment
3244
+ @listSize(
3245
+ assumedSize: 10000
3246
+ slicingArguments: ["take"]
3247
+ slicingArgumentDefaultValue: 10
3248
+ sizedFields: ["items"]
3249
+ requireOneSlicingArgument: false
3250
+ )
3251
+ @cost(weight: "10")
3252
+ orderCommoditySummary(
3253
+ organizationId: Int!
3254
+ groupBy: String!
3255
+ filter: String
3256
+ weightUnit: WeightUnit
3257
+ volumeUnit: VolumeUnit
3258
+ ): [GroupedOrderCommoditySummaryGqlDto!]! @cost(weight: "10")
3259
+ notesByThreadName(
3260
+ skip: Int
3261
+ take: Int
3262
+ organizationId: Int!
3263
+ threadName: String!
3264
+ search: String
3265
+ tags: [String!]
3266
+ ): NotesByThreadNameCollectionSegment
3267
+ @listSize(
3268
+ assumedSize: 10000
3269
+ slicingArguments: ["take"]
3270
+ slicingArgumentDefaultValue: 10
3271
+ sizedFields: ["items"]
3272
+ requireOneSlicingArgument: false
3273
+ )
3274
+ @cost(weight: "10")
3275
+ noteThreadByName(organizationId: Int!, threadName: String!): noteThread
3276
+ @cost(weight: "10")
3277
+ noteThreads(
2466
3278
  skip: Int
2467
3279
  take: Int
2468
3280
  organizationId: Int!
2469
- filter: String
2470
3281
  search: String
2471
- orderBy: String
2472
- ): AllOrderCommoditiesCollectionSegment
3282
+ ): NoteThreadsCollectionSegment
2473
3283
  @listSize(
2474
3284
  assumedSize: 10000
2475
3285
  slicingArguments: ["take"]
@@ -2478,14 +3288,10 @@ type Query {
2478
3288
  requireOneSlicingArgument: false
2479
3289
  )
2480
3290
  @cost(weight: "10")
2481
- orderCommoditySummary(
3291
+ modeOfTransportation(
2482
3292
  organizationId: Int!
2483
- groupBy: String!
2484
- filter: String
2485
- weightUnit: WeightUnit
2486
- volumeUnit: VolumeUnit
2487
- ): [GroupedOrderCommoditySummaryGqlDto!]! @cost(weight: "10")
2488
- modeOfTransportation(organizationId: Int!, modeOfTransportationId: Int!): modeOfTransportation @cost(weight: "10")
3293
+ modeOfTransportationId: Int!
3294
+ ): modeOfTransportation @cost(weight: "10")
2489
3295
  modeOfTransportations(
2490
3296
  skip: Int
2491
3297
  take: Int
@@ -2502,7 +3308,8 @@ type Query {
2502
3308
  requireOneSlicingArgument: false
2503
3309
  )
2504
3310
  @cost(weight: "10")
2505
- linkedOrder(sourceOrderId: Int!, targetOrderId: Int!): linkedOrders @cost(weight: "10")
3311
+ linkedOrder(sourceOrderId: Int!, targetOrderId: Int!): linkedOrders
3312
+ @cost(weight: "10")
2506
3313
  allLinkedOrders(
2507
3314
  skip: Int
2508
3315
  take: Int
@@ -2568,7 +3375,8 @@ type Query {
2568
3375
  requireOneSlicingArgument: false
2569
3376
  )
2570
3377
  @cost(weight: "10")
2571
- knowledgeAsset(organizationId: Int!, knowledgeAssetId: UUID!): knowledgeAsset @cost(weight: "10")
3378
+ knowledgeAsset(organizationId: Int!, knowledgeAssetId: UUID!): knowledgeAsset
3379
+ @cost(weight: "10")
2572
3380
  knowledgeAssets(
2573
3381
  skip: Int
2574
3382
  take: Int
@@ -2603,7 +3411,8 @@ type Query {
2603
3411
  )
2604
3412
  @cost(weight: "10")
2605
3413
  jobOrders(filter: String!): [order!]! @cost(weight: "10")
2606
- jobStatus(organizationId: Int!, jobStatusId: Int!): jobStatus @cost(weight: "10")
3414
+ jobStatus(organizationId: Int!, jobStatusId: Int!): jobStatus
3415
+ @cost(weight: "10")
2607
3416
  jobStatuses(
2608
3417
  skip: Int
2609
3418
  take: Int
@@ -2620,7 +3429,8 @@ type Query {
2620
3429
  requireOneSlicingArgument: false
2621
3430
  )
2622
3431
  @cost(weight: "10")
2623
- inventoryItem(organizationId: Int!, inventoryItemId: Int!): inventoryItem @cost(weight: "10")
3432
+ inventoryItem(organizationId: Int!, inventoryItemId: Int!): inventoryItem
3433
+ @cost(weight: "10")
2624
3434
  inventoryItems(
2625
3435
  skip: Int
2626
3436
  take: Int
@@ -2638,7 +3448,12 @@ type Query {
2638
3448
  )
2639
3449
  @cost(weight: "10")
2640
3450
  inventoryItemContact(idPropertyName: String!): contact @cost(weight: "10")
2641
- customerReferences(skip: Int, take: Int, organizationId: Int!, searchBy: String): CustomerReferencesCollectionSegment
3451
+ customerReferences(
3452
+ skip: Int
3453
+ take: Int
3454
+ organizationId: Int!
3455
+ searchBy: String
3456
+ ): CustomerReferencesCollectionSegment
2642
3457
  @listSize(
2643
3458
  assumedSize: 10000
2644
3459
  slicingArguments: ["take"]
@@ -2647,8 +3462,15 @@ type Query {
2647
3462
  requireOneSlicingArgument: false
2648
3463
  )
2649
3464
  @cost(weight: "10")
2650
- uploadUrl(organizationId: Int!, fileName: String!, contentType: String!): CreateUploadUrlResponse! @cost(weight: "10")
2651
- eventDefinition(organizationId: Int!, eventDefinitionId: Int!): eventDefinition @cost(weight: "10")
3465
+ uploadUrl(
3466
+ organizationId: Int!
3467
+ fileName: String!
3468
+ contentType: String!
3469
+ ): CreateUploadUrlResponse! @cost(weight: "10")
3470
+ eventDefinition(
3471
+ organizationId: Int!
3472
+ eventDefinitionId: Int!
3473
+ ): eventDefinition @cost(weight: "10")
2652
3474
  eventDefinitions(
2653
3475
  skip: Int
2654
3476
  take: Int
@@ -2667,7 +3489,8 @@ type Query {
2667
3489
  requireOneSlicingArgument: false
2668
3490
  )
2669
3491
  @cost(weight: "10")
2670
- equipmentType(organizationId: Int!, equipmentTypeId: Int!): equipmentType @cost(weight: "10")
3492
+ equipmentType(organizationId: Int!, equipmentTypeId: Int!): equipmentType
3493
+ @cost(weight: "10")
2671
3494
  equipmentTypes(
2672
3495
  skip: Int
2673
3496
  take: Int
@@ -2700,7 +3523,8 @@ type Query {
2700
3523
  requireOneSlicingArgument: false
2701
3524
  )
2702
3525
  @cost(weight: "10")
2703
- entityField(organizationId: Int!, entityFieldId: Int!): entityField @cost(weight: "10")
3526
+ entityField(organizationId: Int!, entityFieldId: Int!): entityField
3527
+ @cost(weight: "10")
2704
3528
  entityFields(
2705
3529
  skip: Int
2706
3530
  take: Int
@@ -2718,7 +3542,10 @@ type Query {
2718
3542
  requireOneSlicingArgument: false
2719
3543
  )
2720
3544
  @cost(weight: "10")
2721
- documentTemplate(organizationId: Int!, documentTemplateId: Int!): DocumentTemplateGqlDto @cost(weight: "10")
3545
+ documentTemplate(
3546
+ organizationId: Int!
3547
+ documentTemplateId: Int!
3548
+ ): DocumentTemplateGqlDto @cost(weight: "10")
2722
3549
  documentTemplates(
2723
3550
  skip: Int
2724
3551
  take: Int
@@ -2752,7 +3579,8 @@ type Query {
2752
3579
  requireOneSlicingArgument: false
2753
3580
  )
2754
3581
  @cost(weight: "10")
2755
- userGroup(organizationId: Int!, userGroupId: Int!): userGroup @cost(weight: "10")
3582
+ userGroup(organizationId: Int!, userGroupId: Int!): userGroup
3583
+ @cost(weight: "10")
2756
3584
  userGroups(
2757
3585
  skip: Int
2758
3586
  take: Int
@@ -2786,7 +3614,8 @@ type Query {
2786
3614
  requireOneSlicingArgument: false
2787
3615
  )
2788
3616
  @cost(weight: "10")
2789
- customCode(organizationId: Int!, code: String!): customCode @cost(weight: "10")
3617
+ customCode(organizationId: Int!, code: String!): customCode
3618
+ @cost(weight: "10")
2790
3619
  customCodes(
2791
3620
  skip: Int
2792
3621
  take: Int
@@ -2820,7 +3649,10 @@ type Query {
2820
3649
  requireOneSlicingArgument: false
2821
3650
  )
2822
3651
  @cost(weight: "10")
2823
- containerType(organizationId: Int!, containerTypeCode: String!): containerType @cost(weight: "10")
3652
+ containerType(
3653
+ organizationId: Int!
3654
+ containerTypeCode: String!
3655
+ ): containerType @cost(weight: "10")
2824
3656
  containerTypes(
2825
3657
  skip: Int
2826
3658
  take: Int
@@ -2837,8 +3669,10 @@ type Query {
2837
3669
  requireOneSlicingArgument: false
2838
3670
  )
2839
3671
  @cost(weight: "10")
2840
- containerDescription(organizationId: Int!, containerDescriptionCode: String!): containerDescription
2841
- @cost(weight: "10")
3672
+ containerDescription(
3673
+ organizationId: Int!
3674
+ containerDescriptionCode: String!
3675
+ ): containerDescription @cost(weight: "10")
2842
3676
  containerDescriptions(
2843
3677
  skip: Int
2844
3678
  take: Int
@@ -2872,12 +3706,22 @@ type Query {
2872
3706
  requireOneSlicingArgument: false
2873
3707
  )
2874
3708
  @cost(weight: "10")
2875
- contactAddressByType(addressType: String!): [contactAddress!]! @cost(weight: "10")
2876
- firstContactAddressByType(addressType: String!): contactAddress @cost(weight: "10")
3709
+ contactAddressByType(addressType: String!): [contactAddress!]!
3710
+ @cost(weight: "10")
3711
+ firstContactAddressByType(addressType: String!): contactAddress
3712
+ @cost(weight: "10")
2877
3713
  customValuesAttachment: AttachmentGqlDto @cost(weight: "10")
2878
- contactAttachments(filter: String, orderBy: String): [AttachmentGqlDto!]! @cost(weight: "10")
3714
+ contactAttachments(filter: String, orderBy: String): [AttachmentGqlDto!]!
3715
+ @cost(weight: "10")
2879
3716
  availableCredit: [AvailableCreditByCurrency!]! @cost(weight: "10")
2880
- contactStatus(organizationId: Int!, statusId: Int!): contactStatus @cost(weight: "10")
3717
+ contactChangeHistory(
3718
+ startDate: DateTime
3719
+ endDate: DateTime
3720
+ maxResults: Int! = 10
3721
+ ): EntityAuditHistoryLightResult! @cost(weight: "10")
3722
+ parentContact: contact @cost(weight: "10")
3723
+ contactStatus(organizationId: Int!, statusId: Int!): contactStatus
3724
+ @cost(weight: "10")
2881
3725
  contactStatuses(
2882
3726
  skip: Int
2883
3727
  take: Int
@@ -2894,7 +3738,10 @@ type Query {
2894
3738
  requireOneSlicingArgument: false
2895
3739
  )
2896
3740
  @cost(weight: "10")
2897
- contactPaymentMethod(organizationId: Int!, contactPaymentMethodId: String!): contactPaymentMethod @cost(weight: "10")
3741
+ contactPaymentMethod(
3742
+ organizationId: Int!
3743
+ contactPaymentMethodId: String!
3744
+ ): contactPaymentMethod @cost(weight: "10")
2898
3745
  contactPaymentMethods(
2899
3746
  skip: Int
2900
3747
  take: Int
@@ -2929,7 +3776,8 @@ type Query {
2929
3776
  requireOneSlicingArgument: false
2930
3777
  )
2931
3778
  @cost(weight: "10")
2932
- contactAddress(organizationId: Int!, contactAddressId: Int!): contactAddress @cost(weight: "10")
3779
+ contactAddress(organizationId: Int!, contactAddressId: Int!): contactAddress
3780
+ @cost(weight: "10")
2933
3781
  contactAddresses(
2934
3782
  skip: Int
2935
3783
  take: Int
@@ -2951,8 +3799,13 @@ type Query {
2951
3799
  addressFormat: String
2952
3800
  lang: String = "en-US"
2953
3801
  multiline: Boolean = false
3802
+ language: AddressLanguage! = English
3803
+ useNativeCountryName: Boolean = false
3804
+ includeCountryName: Boolean = true
3805
+ translit: Boolean = false
2954
3806
  ): String! @cost(weight: "10")
2955
- country(organizationId: Int!, countryCode: String!): country @cost(weight: "10")
3807
+ country(organizationId: Int!, countryCode: String!): country
3808
+ @cost(weight: "10")
2956
3809
  countries(
2957
3810
  skip: Int
2958
3811
  take: Int
@@ -2969,7 +3822,8 @@ type Query {
2969
3822
  requireOneSlicingArgument: false
2970
3823
  )
2971
3824
  @cost(weight: "10")
2972
- commodityType(organizationId: Int!, commodityTypeId: Int!): commodityType @cost(weight: "10")
3825
+ commodityType(organizationId: Int!, commodityTypeId: Int!): commodityType
3826
+ @cost(weight: "10")
2973
3827
  commodityTypes(
2974
3828
  skip: Int
2975
3829
  take: Int
@@ -2986,8 +3840,10 @@ type Query {
2986
3840
  requireOneSlicingArgument: false
2987
3841
  )
2988
3842
  @cost(weight: "10")
2989
- commodityTrackingNumber(organizationId: Int!, commodityTrackingNumberId: Int!): commodityTrackingNumber
2990
- @cost(weight: "10")
3843
+ commodityTrackingNumber(
3844
+ organizationId: Int!
3845
+ commodityTrackingNumberId: Int!
3846
+ ): commodityTrackingNumber @cost(weight: "10")
2991
3847
  commodityTrackingNumbers(
2992
3848
  skip: Int
2993
3849
  take: Int
@@ -3004,7 +3860,8 @@ type Query {
3004
3860
  requireOneSlicingArgument: false
3005
3861
  )
3006
3862
  @cost(weight: "10")
3007
- commodityStatus(organizationId: Int!, statusId: Int!): commodityStatus @cost(weight: "10")
3863
+ commodityStatus(organizationId: Int!, statusId: Int!): commodityStatus
3864
+ @cost(weight: "10")
3008
3865
  commodityStatuses(
3009
3866
  skip: Int
3010
3867
  take: Int
@@ -3021,7 +3878,8 @@ type Query {
3021
3878
  requireOneSlicingArgument: false
3022
3879
  )
3023
3880
  @cost(weight: "10")
3024
- commodity(organizationId: Int!, commodityId: Int!): commodity @cost(weight: "10")
3881
+ commodity(organizationId: Int!, commodityId: Int!): commodity
3882
+ @cost(weight: "10")
3025
3883
  commodities(
3026
3884
  skip: Int
3027
3885
  take: Int
@@ -3042,8 +3900,15 @@ type Query {
3042
3900
  parentCommodity: commodity @cost(weight: "10")
3043
3901
  commodityRelatedOrders(filter: String!): [order!]! @cost(weight: "10")
3044
3902
  commodityRelatedOrder(filter: String!): order @cost(weight: "10")
3045
- trackingNumber(idPropertyName: String!): commodityTrackingNumber @cost(weight: "10")
3046
- commodityAttachments(filter: String!): [AttachmentGqlDto!]! @cost(weight: "10")
3903
+ trackingNumber(idPropertyName: String!): commodityTrackingNumber
3904
+ @cost(weight: "10")
3905
+ commodityAttachments(filter: String!): [AttachmentGqlDto!]!
3906
+ @cost(weight: "10")
3907
+ commodityChangeHistory(
3908
+ startDate: DateTime
3909
+ endDate: DateTime
3910
+ maxResults: Int! = 10
3911
+ ): EntityAuditHistoryLightResult! @cost(weight: "10")
3047
3912
  city(organizationId: Int!, cityId: Int!): city @cost(weight: "10")
3048
3913
  cities(
3049
3914
  skip: Int
@@ -3078,7 +3943,8 @@ type Query {
3078
3943
  requireOneSlicingArgument: false
3079
3944
  )
3080
3945
  @cost(weight: "10")
3081
- carrierEquipment(carrierId: Int!, equipmentTypeId: Int!): carrierEquipment @cost(weight: "10")
3946
+ carrierEquipment(carrierId: Int!, equipmentTypeId: Int!): carrierEquipment
3947
+ @cost(weight: "10")
3082
3948
  carrierEquipments(
3083
3949
  skip: Int
3084
3950
  take: Int
@@ -3094,7 +3960,8 @@ type Query {
3094
3960
  requireOneSlicingArgument: false
3095
3961
  )
3096
3962
  @cost(weight: "10")
3097
- calendar(calendarId: Int!): CalendarGqlDto @cost(weight: "10")
3963
+ calendar(organizationId: Int!, calendarId: Int!): CalendarGqlDto
3964
+ @cost(weight: "10")
3098
3965
  calendars(
3099
3966
  skip: Int
3100
3967
  take: Int
@@ -3114,10 +3981,12 @@ type Query {
3114
3981
  calendarEvents(
3115
3982
  skip: Int
3116
3983
  take: Int
3117
- calendarId: Int!
3984
+ organizationId: Int!
3985
+ calendarId: Int
3118
3986
  startDate: DateTime
3119
3987
  endDate: DateTime
3120
3988
  filter: String
3989
+ search: String
3121
3990
  orderBy: String
3122
3991
  expandRecurring: Boolean! = false
3123
3992
  ): CalendarEventsCollectionSegment
@@ -3132,10 +4001,12 @@ type Query {
3132
4001
  calendarAvailability(
3133
4002
  skip: Int
3134
4003
  take: Int
3135
- calendarId: Int!
4004
+ organizationId: Int!
4005
+ calendarId: Int
3136
4006
  startDate: DateTime
3137
4007
  endDate: DateTime
3138
4008
  filter: String
4009
+ search: String
3139
4010
  orderBy: String
3140
4011
  ): CalendarAvailabilityCollectionSegment
3141
4012
  @listSize(
@@ -3149,7 +4020,8 @@ type Query {
3149
4020
  calendarBusinessHours(
3150
4021
  skip: Int
3151
4022
  take: Int
3152
- calendarId: Int!
4023
+ organizationId: Int!
4024
+ calendarId: Int
3153
4025
  dayOfWeek: Int
3154
4026
  filter: String
3155
4027
  orderBy: String
@@ -3162,7 +4034,82 @@ type Query {
3162
4034
  requireOneSlicingArgument: false
3163
4035
  )
3164
4036
  @cost(weight: "10")
3165
- attachment(organizationId: Int!, attachmentId: Int!): AttachmentGqlDto @cost(weight: "10")
4037
+ calendarBusinessHoursBlocks(
4038
+ skip: Int
4039
+ take: Int
4040
+ startDate: DateTime!
4041
+ endDate: DateTime!
4042
+ organizationId: Int!
4043
+ calendarId: Int
4044
+ timeZone: String
4045
+ filter: String
4046
+ orderBy: String
4047
+ limit: Int! = 1000
4048
+ offset: Int! = 0
4049
+ includeExtraWindows: Boolean = false
4050
+ ): CalendarBusinessHoursBlocksCollectionSegment
4051
+ @listSize(
4052
+ assumedSize: 10000
4053
+ slicingArguments: ["take"]
4054
+ slicingArgumentDefaultValue: 10
4055
+ sizedFields: ["items"]
4056
+ requireOneSlicingArgument: false
4057
+ )
4058
+ @cost(weight: "10")
4059
+ "Retrieves a paginated list of audit change summaries, sorted by timestamp descending"
4060
+ auditChangeSummaries(
4061
+ "Organization ID to filter by"
4062
+ organizationId: Int
4063
+ "Start date for filtering"
4064
+ startDate: DateTime
4065
+ "End date for filtering"
4066
+ endDate: DateTime
4067
+ "User ID to filter by"
4068
+ userId: String
4069
+ "Continuation token from previous request"
4070
+ startAfter: String
4071
+ "Maximum number of results to return"
4072
+ maxResults: Int! = 50
4073
+ ): AuditChangeSummariesResult! @cost(weight: "10")
4074
+ "Retrieves audit change details for a specific change ID, sorted by entity name and primary key"
4075
+ auditChangeDetails(
4076
+ "Change ID to retrieve details for"
4077
+ changeId: UUID!
4078
+ "Organization ID"
4079
+ organizationId: Int
4080
+ ): [AuditChangeDetail!]! @cost(weight: "10")
4081
+ "Retrieves paginated audit history for a specific entity. Metadata is parsed from filenames, changedFields are loaded on demand."
4082
+ auditEntityHistory(
4083
+ "Entity name (e.g., Order, Commodity)"
4084
+ entityName: String!
4085
+ "Primary key of the entity"
4086
+ primaryKey: String!
4087
+ "Organization ID"
4088
+ organizationId: Int
4089
+ "Start date for filtering"
4090
+ startDate: DateTime
4091
+ "End date for filtering"
4092
+ endDate: DateTime
4093
+ "Continuation token from previous request"
4094
+ startAfter: String
4095
+ "Maximum number of results to return"
4096
+ maxResults: Int! = 50
4097
+ ): EntityAuditHistoryLightResult! @cost(weight: "10")
4098
+ "Retrieves a parsed JSON representation of audit changes with field-by-field comparison, supporting nested types"
4099
+ auditChangeJson(
4100
+ "Direct file path to the audit log"
4101
+ filePath: String
4102
+ "Change ID to search for"
4103
+ changeId: UUID
4104
+ "Entity name for latest change lookup"
4105
+ entityName: String
4106
+ "Primary key for latest change lookup"
4107
+ primaryKey: String
4108
+ "Organization ID"
4109
+ organizationId: Int
4110
+ ): AuditChangeJson! @cost(weight: "10")
4111
+ attachment(organizationId: Int!, attachmentId: Int!): AttachmentGqlDto
4112
+ @cost(weight: "10")
3166
4113
  attachments(
3167
4114
  skip: Int
3168
4115
  take: Int
@@ -3179,7 +4126,10 @@ type Query {
3179
4126
  requireOneSlicingArgument: false
3180
4127
  )
3181
4128
  @cost(weight: "10")
3182
- emailAttachment(organizationId: Int!, attachmentId: String!): EmailAttachmentGqlDto @cost(weight: "10")
4129
+ emailAttachment(
4130
+ organizationId: Int!
4131
+ emailAttachmentId: String!
4132
+ ): EmailAttachmentGqlDto @cost(weight: "10")
3183
4133
  allOrderAttachments(
3184
4134
  skip: Int
3185
4135
  take: Int
@@ -3195,9 +4145,13 @@ type Query {
3195
4145
  requireOneSlicingArgument: false
3196
4146
  )
3197
4147
  @cost(weight: "10")
3198
- emailPresignedUri(uriType: String!, expiresInDays: Int!): String @cost(weight: "10")
4148
+ emailPresignedUri(uriType: String!, expiresInDays: Int!): String
4149
+ @cost(weight: "10")
3199
4150
  parentOrder: order @cost(weight: "10")
3200
- presignedUri(uriType: String!, expiresInDays: Int!): String! @cost(weight: "10")
4151
+ presignedUri(uriType: String!, expiresInDays: Int!): String!
4152
+ @cost(weight: "10")
4153
+ computedPreviewUri: String @cost(weight: "10")
4154
+ computedThumbnailUri: String @cost(weight: "10")
3201
4155
  publicAppRoutes(
3202
4156
  skip: Int
3203
4157
  take: Int
@@ -3214,7 +4168,8 @@ type Query {
3214
4168
  requireOneSlicingArgument: false
3215
4169
  )
3216
4170
  @cost(weight: "10")
3217
- appRoute(organizationId: Int!, appRouteId: UUID!): AppRouteGqlDto @cost(weight: "10")
4171
+ appRoute(organizationId: Int!, appRouteId: UUID!): AppRouteGqlDto
4172
+ @cost(weight: "10")
3218
4173
  appRoutes(
3219
4174
  skip: Int
3220
4175
  take: Int
@@ -3231,7 +4186,10 @@ type Query {
3231
4186
  requireOneSlicingArgument: false
3232
4187
  )
3233
4188
  @cost(weight: "10")
3234
- appPermission(organizationId: Int!, appPermissionId: UUID!): AppPermissionGqlDto @cost(weight: "10")
4189
+ appPermission(
4190
+ organizationId: Int!
4191
+ appPermissionId: UUID!
4192
+ ): AppPermissionGqlDto @cost(weight: "10")
3235
4193
  appPermissions(
3236
4194
  skip: Int
3237
4195
  take: Int
@@ -3248,7 +4206,8 @@ type Query {
3248
4206
  requireOneSlicingArgument: false
3249
4207
  )
3250
4208
  @cost(weight: "10")
3251
- appModule(organizationId: Int!, appModuleId: UUID!): appModule @cost(weight: "10")
4209
+ appModule(organizationId: Int!, appModuleId: UUID!): appModule
4210
+ @cost(weight: "10")
3252
4211
  appModules(
3253
4212
  skip: Int
3254
4213
  take: Int
@@ -3265,7 +4224,8 @@ type Query {
3265
4224
  requireOneSlicingArgument: false
3266
4225
  )
3267
4226
  @cost(weight: "10")
3268
- appManifest(organizationId: Int!, appManifestId: UUID!): appManifest @cost(weight: "10")
4227
+ appManifest(organizationId: Int!, appManifestId: UUID!): appManifest
4228
+ @cost(weight: "10")
3269
4229
  appManifests(
3270
4230
  skip: Int
3271
4231
  take: Int
@@ -3299,8 +4259,12 @@ type Query {
3299
4259
  requireOneSlicingArgument: false
3300
4260
  )
3301
4261
  @cost(weight: "10")
3302
- appComponent(organizationId: Int!, name: String!, applicationName: String!, platform: String!): AppComponentGqlDto
3303
- @cost(weight: "10")
4262
+ appComponent(
4263
+ organizationId: Int!
4264
+ name: String!
4265
+ applicationName: String!
4266
+ platform: String!
4267
+ ): AppComponentGqlDto @cost(weight: "10")
3304
4268
  appComponents(
3305
4269
  skip: Int
3306
4270
  take: Int
@@ -3316,7 +4280,26 @@ type Query {
3316
4280
  requireOneSlicingArgument: false
3317
4281
  )
3318
4282
  @cost(weight: "10")
3319
- actionEvent(organizationId: Int!, eventId: UUID!): actionEvent @cost(weight: "10")
4283
+ apiCredential(organizationId: Int!, apiCredentialId: Int!): apiCredential
4284
+ @cost(weight: "10")
4285
+ apiCredentials(
4286
+ skip: Int
4287
+ take: Int
4288
+ organizationId: Int!
4289
+ filter: String
4290
+ search: String
4291
+ orderBy: String
4292
+ ): ApiCredentialsCollectionSegment
4293
+ @listSize(
4294
+ assumedSize: 10000
4295
+ slicingArguments: ["take"]
4296
+ slicingArgumentDefaultValue: 10
4297
+ sizedFields: ["items"]
4298
+ requireOneSlicingArgument: false
4299
+ )
4300
+ @cost(weight: "10")
4301
+ actionEvent(organizationId: Int!, eventId: UUID!): actionEvent
4302
+ @cost(weight: "10")
3320
4303
  actionEvents(
3321
4304
  skip: Int
3322
4305
  take: Int
@@ -3377,12 +4360,22 @@ type Query {
3377
4360
  orderCustomCode(idPropertyName: String!): customCode @cost(weight: "10")
3378
4361
  orderVessel(idPropertyName: String!): vessel @cost(weight: "10")
3379
4362
  orderCountry(idPropertyName: String!): country @cost(weight: "10")
3380
- orderModeOfTransportation(idPropertyName: String!): modeOfTransportation @cost(weight: "10")
3381
- orderAccountingTransactions(filter: String!, orderBy: String): [accountingTransaction!]! @cost(weight: "10")
4363
+ orderModeOfTransportation(idPropertyName: String!): modeOfTransportation
4364
+ @cost(weight: "10")
4365
+ orderAccountingTransactions(
4366
+ filter: String
4367
+ orderBy: String
4368
+ ): [accountingTransaction!]! @cost(weight: "10")
4369
+ orderChangeHistory(
4370
+ startDate: DateTime
4371
+ endDate: DateTime
4372
+ maxResults: Int! = 10
4373
+ ): EntityAuditHistoryLightResult! @cost(weight: "10")
3382
4374
  orderRelatedOrder(filter: String!): order @cost(weight: "10")
3383
4375
  orderRelatedOrders(filter: String!): [order!]! @cost(weight: "10")
3384
4376
  orderJobsRelatedOrders(filter: String!): [order!]! @cost(weight: "10")
3385
- orderAttachments(filter: String!): [AttachmentGqlDto!]! @cost(weight: "10")
4377
+ orderAttachments(filter: String!, orderBy: String): [AttachmentGqlDto!]!
4378
+ @cost(weight: "10")
3386
4379
  orderEntityByType(
3387
4380
  idPropertyName: String!
3388
4381
  customValuesKey: String
@@ -3405,12 +4398,31 @@ type Query {
3405
4398
  volumeUnit: VolumeUnit
3406
4399
  dimensionsUnit: DimensionsUnit
3407
4400
  ): OrderSummaryGqlDto! @cost(weight: "10")
3408
- lastTrackingEvent(eventDefinitionName: String): trackingEvent @cost(weight: "10")
4401
+ lastTrackingEvent(
4402
+ eventDefinitionName: String
4403
+ orderBy: String
4404
+ ): trackingEvent @cost(weight: "10")
3409
4405
  routeForOrder(idPropertyName: String!): route @cost(weight: "10")
3410
4406
  relatedOrderByProperty(idPropertyName: String!): order @cost(weight: "10")
3411
4407
  outgoingOrderLinks: [linkedOrders!]! @cost(weight: "10")
3412
4408
  incomingOrderLinks: [linkedOrders!]! @cost(weight: "10")
3413
- accountingTransaction(organizationId: Int!, accountingTransactionId: Int!): accountingTransaction @cost(weight: "10")
4409
+ orderNotesCount(threadFilter: String): Int! @cost(weight: "10")
4410
+ relatedOrders(filter: String, orderBy: String): [order!]! @cost(weight: "10")
4411
+ relatedOrder(filter: String, orderBy: String): order @cost(weight: "10")
4412
+ accountingTransaction(
4413
+ filter: String
4414
+ orderBy: String
4415
+ organizationId: Int!
4416
+ accountingTransactionId: Int!
4417
+ ): accountingTransaction @cost(weight: "10")
4418
+ invoice(filter: String, orderBy: String): accountingTransaction
4419
+ @cost(weight: "10")
4420
+ invoices(filter: String, orderBy: String): [accountingTransaction!]!
4421
+ @cost(weight: "10")
4422
+ bill(filter: String, orderBy: String): accountingTransaction
4423
+ @cost(weight: "10")
4424
+ bills(filter: String, orderBy: String): [accountingTransaction!]!
4425
+ @cost(weight: "10")
3414
4426
  accountingTransactions(
3415
4427
  skip: Int
3416
4428
  take: Int
@@ -3434,7 +4446,17 @@ type Query {
3434
4446
  amountDue: Decimal! @cost(weight: "10")
3435
4447
  relatedOrdersByOrderType(orderType: String!): [order]! @cost(weight: "10")
3436
4448
  relatedOrderByOrderType(orderType: String!): order @cost(weight: "10")
3437
- accountingItem(organizationId: Int!, accountingItemId: Int!): accountingItem @cost(weight: "10")
4449
+ accountingTransactionRelatedOrders(
4450
+ filter: String
4451
+ orderBy: String
4452
+ ): [order!]! @cost(weight: "10")
4453
+ accountingTransactionChangeHistory(
4454
+ startDate: DateTime
4455
+ endDate: DateTime
4456
+ maxResults: Int! = 10
4457
+ ): EntityAuditHistoryLightResult! @cost(weight: "10")
4458
+ accountingItem(organizationId: Int!, accountingItemId: Int!): accountingItem
4459
+ @cost(weight: "10")
3438
4460
  accountingItems(
3439
4461
  skip: Int
3440
4462
  take: Int
@@ -3451,7 +4473,8 @@ type Query {
3451
4473
  requireOneSlicingArgument: false
3452
4474
  )
3453
4475
  @cost(weight: "10")
3454
- accountingAccount(organizationId: Int!, accountId: Int!): accountingAccount @cost(weight: "10")
4476
+ accountingAccount(organizationId: Int!, accountId: Int!): accountingAccount
4477
+ @cost(weight: "10")
3455
4478
  accountingAccounts(
3456
4479
  skip: Int
3457
4480
  take: Int
@@ -3488,6 +4511,21 @@ type RatesCollectionSegment {
3488
4511
  totalCount: Int! @cost(weight: "10")
3489
4512
  }
3490
4513
 
4514
+ type RegenerateApiCredentialSecretPayload {
4515
+ apiCredentialWithSecret: apiCredentialWithSecret
4516
+ query: Query!
4517
+ }
4518
+
4519
+ type RegenerateOrderDocumentPayload {
4520
+ orderDocument: orderDocument
4521
+ query: Query!
4522
+ }
4523
+
4524
+ type RenameNoteThreadPayload {
4525
+ noteThread: noteThread
4526
+ query: Query!
4527
+ }
4528
+
3491
4529
  "A segment of a collection."
3492
4530
  type RolesCollectionSegment {
3493
4531
  "Information to aid in pagination."
@@ -3567,6 +4605,15 @@ type SwitchCase {
3567
4605
  steps: [WorkflowTask!]
3568
4606
  }
3569
4607
 
4608
+ "A segment of a collection."
4609
+ type TagsCollectionSegment {
4610
+ "Information to aid in pagination."
4611
+ pageInfo: CollectionSegmentInfo!
4612
+ "A flattened list of the items."
4613
+ items: [tagItem!]
4614
+ totalCount: Int! @cost(weight: "10")
4615
+ }
4616
+
3570
4617
  "A segment of a collection."
3571
4618
  type TrackingEventsCollectionSegment {
3572
4619
  "Information to aid in pagination."
@@ -3576,6 +4623,11 @@ type TrackingEventsCollectionSegment {
3576
4623
  totalCount: Int! @cost(weight: "10")
3577
4624
  }
3578
4625
 
4626
+ type UnlinkChargesFromAccountingTransactionPayload {
4627
+ accountingTransaction: accountingTransaction
4628
+ query: Query!
4629
+ }
4630
+
3579
4631
  type UpdateAccountingAccountPayload {
3580
4632
  accountingAccount: accountingAccount
3581
4633
  query: Query!
@@ -3596,6 +4648,11 @@ type UpdateActionEventPayload {
3596
4648
  query: Query!
3597
4649
  }
3598
4650
 
4651
+ type UpdateApiCredentialPayload {
4652
+ apiCredential: apiCredential
4653
+ query: Query!
4654
+ }
4655
+
3599
4656
  type UpdateAppManifestPayload {
3600
4657
  appManifest: appManifest
3601
4658
  query: Query!
@@ -3779,6 +4836,11 @@ type UpdateModeOfTransportationPayload {
3779
4836
  query: Query!
3780
4837
  }
3781
4838
 
4839
+ type UpdateNotePayload {
4840
+ note: note
4841
+ query: Query!
4842
+ }
4843
+
3782
4844
  type UpdateOrderCommodityPayload {
3783
4845
  orderCommodity: orderCommodity
3784
4846
  query: Query!
@@ -3814,6 +4876,11 @@ type UpdateOrganizationPayload {
3814
4876
  query: Query!
3815
4877
  }
3816
4878
 
4879
+ type UpdateOrganizationUserPayload {
4880
+ organizationUser: organizationUser
4881
+ query: Query!
4882
+ }
4883
+
3817
4884
  type UpdatePackageCategoryPayload {
3818
4885
  packageCategory: packageCategory
3819
4886
  query: Query!
@@ -3874,6 +4941,11 @@ type UpdateStatePayload {
3874
4941
  query: Query!
3875
4942
  }
3876
4943
 
4944
+ type UpdateTagPayload {
4945
+ tagItem: tagItem
4946
+ query: Query!
4947
+ }
4948
+
3877
4949
  type UpdateTrackingEventPayload {
3878
4950
  trackingEvent: trackingEvent
3879
4951
  query: Query!
@@ -4034,6 +5106,15 @@ type WorkflowExecutionResult {
4034
5106
  workflowType: String!
4035
5107
  }
4036
5108
 
5109
+ "A segment of a collection."
5110
+ type WorkflowExecutionsCollectionSegment {
5111
+ "Information to aid in pagination."
5112
+ pageInfo: CollectionSegmentInfo!
5113
+ "A flattened list of the items."
5114
+ items: [workflowExecution!]
5115
+ totalCount: Int! @cost(weight: "10")
5116
+ }
5117
+
4037
5118
  type WorkflowRuntime {
4038
5119
  additionalProperties: MapOfObject
4039
5120
  name: String
@@ -4051,8 +5132,6 @@ type WorkflowRuntime {
4051
5132
  priority: Int
4052
5133
  tags: [String!]
4053
5134
  concurrency: Concurrency
4054
- "File name/path for the workflow YAML file in the repository. Creates a direct link to the workflow definition file location."
4055
- fileName: String
4056
5135
  }
4057
5136
 
4058
5137
  type WorkflowTask {
@@ -4147,6 +5226,12 @@ type accountingTransaction {
4147
5226
  getAmountDue: Decimal @cost(weight: "10")
4148
5227
  getRelatedOrdersByOrderType(orderType: String!): [order] @cost(weight: "10")
4149
5228
  getRelatedOrderByOrderType(orderType: String!): order @cost(weight: "10")
5229
+ getRelatedOrders(filter: String, orderBy: String): [order] @cost(weight: "10")
5230
+ changeHistory(
5231
+ startDate: DateTime
5232
+ endDate: DateTime
5233
+ maxResults: Int = 10
5234
+ ): EntityAuditHistoryLightResult @cost(weight: "10")
4150
5235
  accountingTransactionId: Int!
4151
5236
  isDraft: Boolean
4152
5237
  accountId: Int!
@@ -4202,6 +5287,41 @@ type actionEvent {
4202
5287
  status: EventStatus!
4203
5288
  }
4204
5289
 
5290
+ type apiCredential {
5291
+ apiCredentialId: Int!
5292
+ organizationId: Int!
5293
+ userId: String!
5294
+ name: String!
5295
+ clientId: String!
5296
+ expiresAt: DateTime
5297
+ allowedIpAddresses: [String!]
5298
+ isActive: Boolean!
5299
+ isDeleted: Boolean!
5300
+ lastUsedAt: DateTime
5301
+ createdBy: String
5302
+ created: DateTime
5303
+ lastModifiedBy: String
5304
+ lastModified: DateTime
5305
+ }
5306
+
5307
+ type apiCredentialWithSecret {
5308
+ clientSecret: String!
5309
+ apiCredentialId: Int!
5310
+ organizationId: Int!
5311
+ userId: String!
5312
+ name: String!
5313
+ clientId: String!
5314
+ expiresAt: DateTime
5315
+ allowedIpAddresses: [String!]
5316
+ isActive: Boolean!
5317
+ isDeleted: Boolean!
5318
+ lastUsedAt: DateTime
5319
+ createdBy: String
5320
+ created: DateTime
5321
+ lastModifiedBy: String
5322
+ lastModified: DateTime
5323
+ }
5324
+
4205
5325
  type appManifest {
4206
5326
  appManifestId: UUID!
4207
5327
  author: String
@@ -4298,6 +5418,7 @@ type charge {
4298
5418
  accountingTransactions: [accountingTransaction!]!
4299
5419
  orders: [order!]!
4300
5420
  salesTax: salesTax
5421
+ tariff: Any
4301
5422
  customValues: MapOfObject
4302
5423
  }
4303
5424
 
@@ -4326,8 +5447,15 @@ type commodity {
4326
5447
  getRelatedOrders(filter: String): [order] @cost(weight: "10")
4327
5448
  getRelatedOrder(filter: String): order @cost(weight: "10")
4328
5449
  getRelatedOrdersForCommodity(filter: String): [order] @cost(weight: "10")
4329
- getCommodityTrackingNumber(idPropertyName: String!): commodityTrackingNumber @cost(weight: "10")
4330
- getCommodityAttachments(filter: String): [AttachmentGqlDto] @cost(weight: "10")
5450
+ getCommodityTrackingNumber(idPropertyName: String!): commodityTrackingNumber
5451
+ @cost(weight: "10")
5452
+ getCommodityAttachments(filter: String): [AttachmentGqlDto]
5453
+ @cost(weight: "10")
5454
+ changeHistory(
5455
+ startDate: DateTime
5456
+ endDate: DateTime
5457
+ maxResults: Int = 10
5458
+ ): EntityAuditHistoryLightResult @cost(weight: "10")
4331
5459
  commodityId: Int!
4332
5460
  commodityStatusId: Int
4333
5461
  commodityStatus: commodityStatus
@@ -4368,6 +5496,10 @@ type commodity {
4368
5496
  width: Decimal
4369
5497
  trackingNumbers: [commodityTrackingNumber!]
4370
5498
  orderCommodities: [orderCommodity!]
5499
+ commodityTags: [CommodityTagGqlDto!]
5500
+ allTags(
5501
+ where: CommodityAllTagsGqlDtoFilterInput @cost(weight: "10")
5502
+ ): [CommodityAllTagsGqlDto!]!
4371
5503
  containerCommodity: commodity
4372
5504
  containerCommodities: [commodity!]
4373
5505
  shipments(where: orderFilterInput @cost(weight: "10")): [order!]
@@ -4377,7 +5509,12 @@ type commodity {
4377
5509
  valueByTotal: Boolean!
4378
5510
  packageTypeName: String
4379
5511
  isDeleted: Boolean
5512
+ billToContactId: Int
4380
5513
  links: [LinkDto!]!
5514
+ "Gets all unique tag names for the commodity as a simple string array"
5515
+ allTagNames: [String!]! @cost(weight: "10")
5516
+ "Gets only the tags directly assigned to this commodity"
5517
+ directTagNames: [String!]! @cost(weight: "10")
4381
5518
  }
4382
5519
 
4383
5520
  type commodityStatus {
@@ -4433,11 +5570,21 @@ type commodityType {
4433
5570
  }
4434
5571
 
4435
5572
  type contact {
4436
- getContactAddressByType(addressType: String!): [contactAddress] @cost(weight: "10")
4437
- getFirstContactAddressByType(addressType: String!): contactAddress @cost(weight: "10")
4438
- getContactAttachments(filter: String, orderBy: String): [AttachmentGqlDto] @cost(weight: "10")
4439
- getCustomValuesAttachment(filter: String): AttachmentGqlDto @cost(weight: "10")
5573
+ getContactAddressByType(addressType: String!): [contactAddress]
5574
+ @cost(weight: "10")
5575
+ getFirstContactAddressByType(addressType: String!): contactAddress
5576
+ @cost(weight: "10")
5577
+ getContactAttachments(filter: String, orderBy: String): [AttachmentGqlDto]
5578
+ @cost(weight: "10")
5579
+ getCustomValuesAttachment(filter: String): AttachmentGqlDto
5580
+ @cost(weight: "10")
4440
5581
  availableCredit: [AvailableCreditByCurrency] @cost(weight: "10")
5582
+ changeHistory(
5583
+ startDate: DateTime
5584
+ endDate: DateTime
5585
+ maxResults: Int = 10
5586
+ ): EntityAuditHistoryLightResult @cost(weight: "10")
5587
+ parentContact: contact @cost(weight: "10")
4441
5588
  contactId: Int!
4442
5589
  accountNumber: String
4443
5590
  contactFirstName: String
@@ -4467,15 +5614,20 @@ type contact {
4467
5614
  paymentTermId: Int
4468
5615
  paymentTerm: paymentTerm
4469
5616
  parentContactId: Int
4470
- parentContact: contact
4471
5617
  phoneNumber: String
4472
5618
  tags: [String!]
4473
5619
  website: String
4474
5620
  userEmployee: userEmployee
4475
- contactAddresses(where: contactAddressFilterInput @cost(weight: "10")): [contactAddress!]
5621
+ contactAddresses(
5622
+ where: contactAddressFilterInput @cost(weight: "10")
5623
+ ): [contactAddress!]
4476
5624
  contacts(where: contactFilterInput @cost(weight: "10")): [contact!]
4477
- contactLinks(where: contactLinkFilterInput @cost(weight: "10")): [contactLink!]
4478
- linkToContactLinks(where: contactLinkFilterInput @cost(weight: "10")): [contactLink!]
5625
+ contactLinks(
5626
+ where: contactLinkFilterInput @cost(weight: "10")
5627
+ ): [contactLink!]
5628
+ linkToContactLinks(
5629
+ where: contactLinkFilterInput @cost(weight: "10")
5630
+ ): [contactLink!]
4479
5631
  discounts(where: discountFilterInput @cost(weight: "10")): [discount!]
4480
5632
  updatedUser: user!
4481
5633
  createdUser: user!
@@ -4487,6 +5639,14 @@ type contactAddress {
4487
5639
  addressFormat: String
4488
5640
  lang: String = "en-US"
4489
5641
  multiline: Boolean = false
5642
+ "Language for address output. English (default, always Latin transliteration), Ukrainian (Cyrillic by default, Latin if translit=true), Russian (Cyrillic by default, Latin if translit=true)"
5643
+ language: AddressLanguage = English
5644
+ "Use native country name from CustomValues['nativeName'] if available"
5645
+ useNativeCountryName: Boolean = false
5646
+ "Include country name in formatted address"
5647
+ includeCountryName: Boolean = true
5648
+ "Transliterate Cyrillic to Latin. Only applies to Ukrainian and Russian languages (English always transliterates). Default is false."
5649
+ translit: Boolean = false
4490
5650
  ): String @cost(weight: "10")
4491
5651
  contactAddressId: Int!
4492
5652
  isInactive: Boolean
@@ -4675,9 +5835,15 @@ type discount {
4675
5835
  minimumWeight: Decimal!
4676
5836
  minimumWeightUnit: WeightUnit!
4677
5837
  carriers(where: contactFilterInput @cost(weight: "10")): [contact!]
4678
- transportationModes(where: modeOfTransportationFilterInput @cost(weight: "10")): [modeOfTransportation!]
4679
- destinationCountries(where: countryFilterInput @cost(weight: "10")): [country!]
4680
- validationWorkflows(where: workflowFilterInput @cost(weight: "10")): [workflow!]
5838
+ transportationModes(
5839
+ where: modeOfTransportationFilterInput @cost(weight: "10")
5840
+ ): [modeOfTransportation!]
5841
+ destinationCountries(
5842
+ where: countryFilterInput @cost(weight: "10")
5843
+ ): [country!]
5844
+ validationWorkflows(
5845
+ where: workflowFilterInput @cost(weight: "10")
5846
+ ): [workflow!]
4681
5847
  }
4682
5848
 
4683
5849
  type division {
@@ -4704,6 +5870,9 @@ type division {
4704
5870
  streetAndNumber: String
4705
5871
  useDivisionInDocumentHeaders: Boolean!
4706
5872
  zipCode: String
5873
+ parentDivisionId: Int
5874
+ parentDivision: division
5875
+ nestedDivisions: [division!]
4707
5876
  updatedUser: user!
4708
5877
  createdUser: user!
4709
5878
  }
@@ -4799,6 +5968,12 @@ type inventoryItem {
4799
5968
  width: Decimal
4800
5969
  updatedUser: user!
4801
5970
  createdUser: user!
5971
+ inventoryItemTags(
5972
+ where: InventoryItemTagGqlDtoFilterInput @cost(weight: "10")
5973
+ ): [InventoryItemTagGqlDto!]
5974
+ allTags(
5975
+ where: InventoryItemAllTagsGqlDtoFilterInput @cost(weight: "10")
5976
+ ): [InventoryItemAllTagsGqlDto!]!
4802
5977
  }
4803
5978
 
4804
5979
  type jobStatus {
@@ -4895,17 +6070,60 @@ type modeOfTransportation {
4895
6070
  createdUser: user!
4896
6071
  }
4897
6072
 
6073
+ type note {
6074
+ id: UUID!
6075
+ threadId: UUID!
6076
+ threadName: String!
6077
+ content: MapOfObject
6078
+ mentions: [MapOfObject]
6079
+ tags: [String!]!
6080
+ isPinned: Boolean!
6081
+ created: DateTime!
6082
+ createdBy: String!
6083
+ lastModified: DateTime!
6084
+ lastModifiedBy: String!
6085
+ createdUser: user!
6086
+ updatedUser: user!
6087
+ thread: noteThread!
6088
+ }
6089
+
6090
+ type noteThread {
6091
+ id: UUID!
6092
+ organizationId: Int!
6093
+ name: String!
6094
+ slug: String!
6095
+ metadata: MapOfObject
6096
+ created: DateTime!
6097
+ createdBy: String!
6098
+ lastModified: DateTime!
6099
+ lastModifiedBy: String!
6100
+ createdUser: user!
6101
+ updatedUser: user!
6102
+ notes(where: noteFilterInput @cost(weight: "10")): [note!]
6103
+ links: [LinkDto!]!
6104
+ }
6105
+
4898
6106
  type order {
4899
6107
  getContact(idPropertyName: String!): contact @cost(weight: "10")
4900
6108
  getPort(idPropertyName: String!): port @cost(weight: "10")
4901
6109
  getCustomCode(idPropertyName: String!): customCode @cost(weight: "10")
4902
6110
  getVessel(idPropertyName: String!): vessel @cost(weight: "10")
4903
6111
  getCountry(idPropertyName: String!): country @cost(weight: "10")
4904
- getModeOfTransportation(idPropertyName: String!): modeOfTransportation @cost(weight: "10")
4905
- getAccountingTransactions(filter: String, orderBy: String): [accountingTransaction] @cost(weight: "10")
6112
+ getModeOfTransportation(idPropertyName: String!): modeOfTransportation
6113
+ @cost(weight: "10")
6114
+ getAccountingTransactions(
6115
+ filter: String
6116
+ orderBy: String
6117
+ ): [accountingTransaction] @cost(weight: "10")
6118
+ changeHistory(
6119
+ startDate: DateTime
6120
+ endDate: DateTime
6121
+ maxResults: Int = 10
6122
+ ): EntityAuditHistoryLightResult @cost(weight: "10")
4906
6123
  getRelatedOrders(filter: String): [order] @cost(weight: "10")
4907
6124
  getOrderJobsRelatedOrders(filter: String): [order] @cost(weight: "10")
4908
- getOrderAttachments(filter: String): [AttachmentGqlDto] @cost(weight: "10")
6125
+ getOrderAttachments(filter: String, orderBy: String): [AttachmentGqlDto]
6126
+ @cost(weight: "10")
4909
6127
  getOrderEntityByType(
4910
6128
  idPropertyName: String!
4911
6129
  customValuesKey: String
@@ -4914,13 +6132,34 @@ type order {
4914
6132
  ): orderEntity @cost(weight: "10")
4915
6133
  getCharge(chargeDescription: String): charge @cost(weight: "10")
4916
6134
  getChargesByChargeType(chargeType: String!): [charge] @cost(weight: "10")
4917
- getOrderSummary(weightUnit: String, volumeUnit: String, dimensionsUnit: String): OrderSummaryGqlDto
4918
- @cost(weight: "10")
4919
- lastTrackingEvent(eventDefinitionName: String): trackingEvent @cost(weight: "10")
6135
+ getOrderSummary(
6136
+ weightUnit: String
6137
+ volumeUnit: String
6138
+ dimensionsUnit: String
6139
+ ): OrderSummaryGqlDto @cost(weight: "10")
6140
+ lastTrackingEvent(
6141
+ eventDefinitionName: String
6142
+ orderBy: String
6143
+ ): trackingEvent @cost(weight: "10")
4920
6144
  getRoute(idPropertyName: String!): route @cost(weight: "10")
4921
6145
  getRelatedOrderByProperty(idPropertyName: String): order @cost(weight: "10")
4922
6146
  outgoingLinks: [linkedOrders] @cost(weight: "10")
4923
6147
  incomingLinks: [linkedOrders] @cost(weight: "10")
6148
+ notesCount(threadFilter: String): Int @cost(weight: "10")
6149
+ allRelatedOrders(filter: String, orderBy: String): [order!]!
6150
+ @cost(weight: "10")
6151
+ relatedOrders(filter: String, orderBy: String): [order!]! @cost(weight: "10")
6152
+ relatedOrder(filter: String, orderBy: String): order @cost(weight: "10")
6153
+ accountingTransaction(filter: String, orderBy: String): accountingTransaction
6154
+ @cost(weight: "10")
6155
+ invoice(filter: String, orderBy: String): accountingTransaction
6156
+ @cost(weight: "10")
6157
+ invoices(filter: String, orderBy: String): [accountingTransaction!]!
6158
+ @cost(weight: "10")
6159
+ bill(filter: String, orderBy: String): accountingTransaction
6160
+ @cost(weight: "10")
6161
+ bills(filter: String, orderBy: String): [accountingTransaction!]!
6162
+ @cost(weight: "10")
4924
6163
  orderId: Int!
4925
6164
  isDraft: Boolean
4926
6165
  billToContactId: Int
@@ -4947,9 +6186,15 @@ type order {
4947
6186
  salespersonContactId: Int
4948
6187
  salespersonContact: contact
4949
6188
  trackingNumber: String
4950
- orderDocuments(where: orderDocumentFilterInput @cost(weight: "10")): [orderDocument!]!
4951
- orderEntities(where: orderEntityFilterInput @cost(weight: "10")): [orderEntity!]!
4952
- orderCarriers(where: orderCarrierFilterInput @cost(weight: "10")): [orderCarrier!]!
6189
+ orderDocuments(
6190
+ where: orderDocumentFilterInput @cost(weight: "10")
6191
+ ): [orderDocument!]!
6192
+ orderEntities(
6193
+ where: orderEntityFilterInput @cost(weight: "10")
6194
+ ): [orderEntity!]!
6195
+ orderCarriers(
6196
+ where: orderCarrierFilterInput @cost(weight: "10")
6197
+ ): [orderCarrier!]!
4953
6198
  orderEntityCarriers: [orderEntity!]!
4954
6199
  orderEntityVendors: [orderEntity!]!
4955
6200
  orderEntityPickups: [orderEntity!]!
@@ -4965,19 +6210,36 @@ type order {
4965
6210
  orderEntityUltimateConsignee: [orderEntity!]!
4966
6211
  orderEntityUsppi: [orderEntity!]!
4967
6212
  charges(where: chargeFilterInput @cost(weight: "10")): [charge!]!
4968
- orderCommodities(where: orderCommodityFilterInput @cost(weight: "10")): [orderCommodity!]!
4969
- trackingEvents(where: trackingEventFilterInput @cost(weight: "10")): [trackingEvent!]!
6213
+ orderCommodities(
6214
+ where: orderCommodityFilterInput @cost(weight: "10")
6215
+ ): [orderCommodity!]!
6216
+ trackingEvents(
6217
+ where: trackingEventFilterInput @cost(weight: "10")
6218
+ ): [trackingEvent!]!
4970
6219
  shipments(where: orderFilterInput @cost(weight: "10")): [order!]!
4971
- invoices(where: accountingTransactionFilterInput @cost(weight: "10")): [accountingTransaction!]!
4972
6220
  jobs(where: JobFilterInput @cost(weight: "10")): [Job!]!
4973
- jobOrders(where: JobOrderGqlDtoFilterInput @cost(weight: "10")): [JobOrderGqlDto!]!
4974
- attachments(where: AttachmentGqlDtoFilterInput @cost(weight: "10")): [AttachmentGqlDto!]
6221
+ jobOrders(
6222
+ where: JobOrderGqlDtoFilterInput @cost(weight: "10")
6223
+ ): [JobOrderGqlDto!]!
6224
+ attachments(
6225
+ where: AttachmentGqlDtoFilterInput @cost(weight: "10")
6226
+ ): [AttachmentGqlDto!]
4975
6227
  carriers(where: contactFilterInput @cost(weight: "10")): [contact!]!
6228
+ orderTags(
6229
+ where: OrderTagGqlDtoFilterInput @cost(weight: "10")
6230
+ ): [OrderTagGqlDto!]!
6231
+ allTags(
6232
+ where: OrderAllTagsGqlDtoFilterInput @cost(weight: "10")
6233
+ ): [OrderAllTagsGqlDto!]!
4976
6234
  updatedUser: user!
4977
6235
  createdUser: user!
4978
6236
  commoditySummary: commoditySummary!
4979
6237
  accountingSummary: accountingSummary!
4980
6238
  links: [LinkDto!]!
6239
+ "Gets all unique tag names for the order as a simple string array"
6240
+ allTagNames: [String!]! @cost(weight: "10")
6241
+ "Gets a summary of tags from the materialized view"
6242
+ tagSummary: OrderTagSummaryDto @cost(weight: "10")
4981
6243
  }
4982
6244
 
4983
6245
  type orderCarrier {
@@ -5016,6 +6278,7 @@ type orderDocument {
5016
6278
  linkToDocument: String!
5017
6279
  updatedUser: user!
5018
6280
  createdUser: user!
6281
+ workflowId: UUID
5019
6282
  }
5020
6283
 
5021
6284
  type orderEntity {
@@ -5041,7 +6304,9 @@ type orderEntity {
5041
6304
  orderEntitySequence: Int!
5042
6305
  orderId: Int!
5043
6306
  isDeleted: Boolean
5044
- attachments(where: AttachmentGqlDtoFilterInput @cost(weight: "10")): [AttachmentGqlDto!]!
6307
+ attachments(
6308
+ where: AttachmentGqlDtoFilterInput @cost(weight: "10")
6309
+ ): [AttachmentGqlDto!]!
5045
6310
  }
5046
6311
 
5047
6312
  type orderStatus {
@@ -5063,7 +6328,8 @@ type orderStatus {
5063
6328
  }
5064
6329
 
5065
6330
  type organization {
5066
- getCustomValueAttachment(customValueName: String!): AttachmentGqlDto @cost(weight: "10")
6331
+ getCustomValueAttachment(customValueName: String!): AttachmentGqlDto
6332
+ @cost(weight: "10")
5067
6333
  organizationId: Int!
5068
6334
  addressLine: String
5069
6335
  addressLine2: String
@@ -5096,6 +6362,37 @@ type organizationConfig {
5096
6362
  createdUser: user!
5097
6363
  }
5098
6364
 
6365
+ type organizationUser {
6366
+ userEmployeeId: Int!
6367
+ created: DateTime!
6368
+ createdBy: String!
6369
+ employeeContactId: Int!
6370
+ lastModified: DateTime!
6371
+ lastModifiedBy: String!
6372
+ organizationId: Int!
6373
+ userId: String!
6374
+ user: user!
6375
+ employee: contact!
6376
+ visibleTransactions: VisibleTransactions!
6377
+ userGroups: [userGroup!]!
6378
+ contactFirstName: String
6379
+ contactLastName: String
6380
+ contactName: String
6381
+ contactEmailAddress: String
6382
+ contactPhoneNumber: String
6383
+ contactMobilePhoneNumber: String
6384
+ contactAccountNumber: String
6385
+ contactWebsite: String
6386
+ contactFaxNumber: String
6387
+ divisionId: Int!
6388
+ additionalDivisionIds: [Int!]
6389
+ userName: String
6390
+ isInactive: Boolean!
6391
+ userIsInactive: Boolean!
6392
+ updatedUser: user!
6393
+ createdUser: user!
6394
+ }
6395
+
5099
6396
  type packageCategory {
5100
6397
  organizationId: Int!
5101
6398
  packageCategoryCode: String!
@@ -5197,6 +6494,7 @@ type port {
5197
6494
  name: String!
5198
6495
  portRemarks: String
5199
6496
  stateCode: String
6497
+ customValues: MapOfObject
5200
6498
  country: country
5201
6499
  state: state
5202
6500
  updatedUser: user!
@@ -5316,7 +6614,9 @@ type route {
5316
6614
  isDraft: Boolean!
5317
6615
  rates(where: rateFilterInput @cost(weight: "10")): [rate!]
5318
6616
  routeLegs(where: routeLegFilterInput @cost(weight: "10")): [routeLeg!]
5319
- routeRouteLegs(where: routeRouteLegFilterInput @cost(weight: "10")): [routeRouteLeg!]
6617
+ routeRouteLegs(
6618
+ where: routeRouteLegFilterInput @cost(weight: "10")
6619
+ ): [routeRouteLeg!]
5320
6620
  }
5321
6621
 
5322
6622
  type routeLeg {
@@ -5344,7 +6644,9 @@ type routeLeg {
5344
6644
  isDraft: Boolean!
5345
6645
  rates(where: rateFilterInput @cost(weight: "10")): [rate!]
5346
6646
  routes(where: routeFilterInput @cost(weight: "10")): [route!]
5347
- routeRouteLegs(where: routeRouteLegFilterInput @cost(weight: "10")): [routeRouteLeg!]
6647
+ routeRouteLegs(
6648
+ where: routeRouteLegFilterInput @cost(weight: "10")
6649
+ ): [routeRouteLeg!]
5348
6650
  }
5349
6651
 
5350
6652
  type routeRouteLeg {
@@ -5400,6 +6702,20 @@ type state {
5400
6702
  createdUser: user!
5401
6703
  }
5402
6704
 
6705
+ type tagItem {
6706
+ tagId: Int!
6707
+ organizationId: Int!
6708
+ name: String!
6709
+ description: String
6710
+ entityName: String!
6711
+ customValues: MapOfObject
6712
+ isDeleted: Boolean!
6713
+ createdBy: String
6714
+ created: DateTime
6715
+ lastModifiedBy: String
6716
+ lastModified: DateTime
6717
+ }
6718
+
5403
6719
  type trackingEvent {
5404
6720
  trackingEventId: Int!
5405
6721
  created: DateTime!
@@ -5464,6 +6780,7 @@ type userGroup {
5464
6780
  lastModifiedBy: String!
5465
6781
  name: String!
5466
6782
  organizationId: Int!
6783
+ customValues: MapOfObject
5467
6784
  updatedUser: user!
5468
6785
  createdUser: user!
5469
6786
  }
@@ -5567,6 +6884,19 @@ type workflow {
5567
6884
  createdUser: user!
5568
6885
  }
5569
6886
 
6887
+ type workflowExecution {
6888
+ executionId: UUID!
6889
+ workflowId: UUID!
6890
+ organizationId: Int!
6891
+ userId: String
6892
+ executedAt: DateTime!
6893
+ executionStatus: WorkflowExecutionStatus!
6894
+ durationMs: Long!
6895
+ txtLogUrl: String @cost(weight: "10")
6896
+ jsonLogUrl: String @cost(weight: "10")
6897
+ user: AuditUser @cost(weight: "10")
6898
+ }
6899
+
5570
6900
  input AccountTypeOperationFilterInput {
5571
6901
  eq: AccountType @cost(weight: "10")
5572
6902
  neq: AccountType @cost(weight: "10")
@@ -5624,6 +6954,7 @@ input AttachmentGqlDtoFilterInput {
5624
6954
  or: [AttachmentGqlDtoFilterInput!]
5625
6955
  attachmentId: IntOperationFilterInput
5626
6956
  attachmentGuid: UuidOperationFilterInput
6957
+ status: AttachmentStatusOperationFilterInput
5627
6958
  attachmentType: AttachmentTypeOperationFilterInput
5628
6959
  created: DateTimeOperationFilterInput
5629
6960
  createdBy: StringOperationFilterInput
@@ -5654,6 +6985,13 @@ input AttachmentParentTypeOperationFilterInput {
5654
6985
  nin: [AttachmentParentType!] @cost(weight: "10")
5655
6986
  }
5656
6987
 
6988
+ input AttachmentStatusOperationFilterInput {
6989
+ eq: AttachmentStatus @cost(weight: "10")
6990
+ neq: AttachmentStatus @cost(weight: "10")
6991
+ in: [AttachmentStatus!] @cost(weight: "10")
6992
+ nin: [AttachmentStatus!] @cost(weight: "10")
6993
+ }
6994
+
5657
6995
  input AttachmentTypeOperationFilterInput {
5658
6996
  eq: AttachmentType @cost(weight: "10")
5659
6997
  neq: AttachmentType @cost(weight: "10")
@@ -5669,9 +7007,10 @@ input BooleanOperationFilterInput {
5669
7007
  input BusinessHourInput {
5670
7008
  calendarBusinessHourId: Int
5671
7009
  dayOfWeek: Int!
5672
- startTime: TimeSpan!
5673
- endTime: TimeSpan!
7010
+ startTime: TimeSpanScalar
7011
+ endTime: TimeSpanScalar
5674
7012
  label: String
7013
+ isDeleted: Boolean
5675
7014
  customValues: MapOfObject
5676
7015
  }
5677
7016
 
@@ -5720,6 +7059,18 @@ input ChargeTypeOperationFilterInput {
5720
7059
  nin: [ChargeType!] @cost(weight: "10")
5721
7060
  }
5722
7061
 
7062
+ input CommodityAllTagsGqlDtoFilterInput {
7063
+ and: [CommodityAllTagsGqlDtoFilterInput!]
7064
+ or: [CommodityAllTagsGqlDtoFilterInput!]
7065
+ commodityId: IntOperationFilterInput
7066
+ organizationId: IntOperationFilterInput
7067
+ tagId: IntOperationFilterInput
7068
+ tagName: StringOperationFilterInput
7069
+ tagDescription: StringOperationFilterInput
7070
+ tagEntityName: StringOperationFilterInput
7071
+ customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
7072
+ }
7073
+
5723
7074
  input CommodityStatusStageOperationFilterInput {
5724
7075
  eq: CommodityStatusStage @cost(weight: "10")
5725
7076
  neq: CommodityStatusStage @cost(weight: "10")
@@ -5727,6 +7078,19 @@ input CommodityStatusStageOperationFilterInput {
5727
7078
  nin: [CommodityStatusStage!] @cost(weight: "10")
5728
7079
  }
5729
7080
 
7081
+ input CommodityTagGqlDtoFilterInput {
7082
+ and: [CommodityTagGqlDtoFilterInput!]
7083
+ or: [CommodityTagGqlDtoFilterInput!]
7084
+ commodityId: IntOperationFilterInput
7085
+ tagId: IntOperationFilterInput
7086
+ tag: tagItemFilterInput
7087
+ customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
7088
+ createdBy: StringOperationFilterInput
7089
+ created: DateTimeOperationFilterInput
7090
+ lastModifiedBy: StringOperationFilterInput
7091
+ lastModified: DateTimeOperationFilterInput
7092
+ }
7093
+
5730
7094
  input ComponentInputFilterInput {
5731
7095
  and: [ComponentInputFilterInput!]
5732
7096
  or: [ComponentInputFilterInput!]
@@ -5899,6 +7263,18 @@ input CreateActionEventInput {
5899
7263
  values: CreateActionEventCommandValuesInput!
5900
7264
  }
5901
7265
 
7266
+ input CreateApiCredentialCommandValuesInput {
7267
+ name: String!
7268
+ expiresAt: DateTime
7269
+ allowedIpAddresses: [String!]
7270
+ userId: String
7271
+ }
7272
+
7273
+ input CreateApiCredentialInput {
7274
+ organizationId: Int!
7275
+ values: CreateApiCredentialCommandValuesInput!
7276
+ }
7277
+
5902
7278
  input CreateAppManifestCommandValuesInput {
5903
7279
  author: String
5904
7280
  currentVersion: String
@@ -5939,6 +7315,7 @@ input CreateAttachmentCommandValuesInput {
5939
7315
  prefix: String
5940
7316
  bytesArray: [Byte!]
5941
7317
  fileUrl: String
7318
+ attachmentGuid: UUID
5942
7319
  customValues: [MapOfObject!]
5943
7320
  }
5944
7321
 
@@ -6044,6 +7421,7 @@ input CreateChargeCommandValuesInput {
6044
7421
  rateId: Int
6045
7422
  allowAutomaticUpdate: Boolean!
6046
7423
  calculatedOf: CalculatedOfTypes
7424
+ tariff: TariffOptionsInput
6047
7425
  customValues: MapOfObject
6048
7426
  }
6049
7427
 
@@ -6099,6 +7477,8 @@ input CreateCommodityCommandValuesInput {
6099
7477
  warehouseLocationCode: String
6100
7478
  inventoryItemId: Int
6101
7479
  isDeleted: Boolean
7480
+ commodityTags: [Int!]
7481
+ billToContactId: Int
6102
7482
  }
6103
7483
 
6104
7484
  input CreateCommodityInput {
@@ -6137,7 +7517,7 @@ input CreateCommodityTypeCommandValuesInput {
6137
7517
  code: String!
6138
7518
  description: String
6139
7519
  isActive: Boolean
6140
- customValues: [MapOfObject!]
7520
+ customValues: MapOfObject
6141
7521
  }
6142
7522
 
6143
7523
  input CreateCommodityTypeInput {
@@ -6316,6 +7696,7 @@ input CreateDivisionCommandValuesInput {
6316
7696
  zipCode: String
6317
7697
  portId: String
6318
7698
  airAmsOriginatorCode: String
7699
+ parentDivisionId: Int
6319
7700
  }
6320
7701
 
6321
7702
  input CreateDivisionInput {
@@ -6454,6 +7835,19 @@ input CreateModeOfTransportationInput {
6454
7835
  values: CreateModeOfTransportationCommandValuesInput!
6455
7836
  }
6456
7837
 
7838
+ input CreateNoteCommandValuesInput {
7839
+ threadName: String!
7840
+ content: MapOfObject
7841
+ mentions: [MapOfObject]
7842
+ tags: [String!]
7843
+ isPinned: Boolean
7844
+ }
7845
+
7846
+ input CreateNoteInput {
7847
+ organizationId: Int!
7848
+ values: CreateNoteCommandValuesInput!
7849
+ }
7850
+
6457
7851
  input CreateOrderCommandValuesInput {
6458
7852
  billToContactId: Int
6459
7853
  divisionId: Int
@@ -6473,6 +7867,7 @@ input CreateOrderCommandValuesInput {
6473
7867
  customValues: MapOfObject
6474
7868
  jobIds: [UUID!]
6475
7869
  isDraft: Boolean
7870
+ orderTags: [Int!]
6476
7871
  }
6477
7872
 
6478
7873
  input CreateOrderCommodityCommandValuesInput {
@@ -6547,6 +7942,26 @@ input CreateOrganizationConfigInput {
6547
7942
  values: CreateOrganizationConfigCommandValuesInput!
6548
7943
  }
6549
7944
 
7945
+ input CreateOrganizationUserCommandValuesInput {
7946
+ divisionId: Int
7947
+ contactFirstName: String!
7948
+ contactLastName: String!
7949
+ contactName: String!
7950
+ contactEmailAddress: String!
7951
+ contactPhoneNumber: String
7952
+ userName: String!
7953
+ password: String!
7954
+ visibleTransactions: VisibleTransactions!
7955
+ parentContactId: Int
7956
+ userGroups: [Int!]
7957
+ additionalDivisionIds: [Int!]
7958
+ }
7959
+
7960
+ input CreateOrganizationUserInput {
7961
+ organizationId: Int!
7962
+ values: CreateOrganizationUserCommandValuesInput!
7963
+ }
7964
+
6550
7965
  input CreatePackageCategoryCommandValuesInput {
6551
7966
  packageCategoryCode: String!
6552
7967
  isContainer: Boolean!
@@ -6762,6 +8177,18 @@ input CreateStateInput {
6762
8177
  values: CreateStateCommandValuesInput!
6763
8178
  }
6764
8179
 
8180
+ input CreateTagCommandValuesInput {
8181
+ name: String!
8182
+ description: String
8183
+ entityName: String!
8184
+ customValues: MapOfObject
8185
+ }
8186
+
8187
+ input CreateTagInput {
8188
+ organizationId: Int!
8189
+ values: CreateTagCommandValuesInput!
8190
+ }
8191
+
6765
8192
  input CreateTrackingEventCommandInput {
6766
8193
  organizationId: Int!
6767
8194
  values: CreateTrackingEventCommandValuesInput!
@@ -6815,6 +8242,7 @@ input CreateUserEmployeeInput {
6815
8242
  input CreateUserGroupCommandValuesInput {
6816
8243
  description: String!
6817
8244
  name: String!
8245
+ customValues: MapOfObject
6818
8246
  userRoles: [ApplicationUserRoleDtoInput!]
6819
8247
  }
6820
8248
 
@@ -6946,6 +8374,11 @@ input DeleteActionEventInput {
6946
8374
  eventId: UUID!
6947
8375
  }
6948
8376
 
8377
+ input DeleteApiCredentialInput {
8378
+ organizationId: Int!
8379
+ apiCredentialId: Int!
8380
+ }
8381
+
6949
8382
  input DeleteAppManifestInput {
6950
8383
  organizationId: Int!
6951
8384
  appManifestId: UUID!
@@ -7105,6 +8538,11 @@ input DeleteModeOfTransportationInput {
7105
8538
  modeOfTransportationId: Int!
7106
8539
  }
7107
8540
 
8541
+ input DeleteNoteInput {
8542
+ organizationId: Int!
8543
+ id: UUID!
8544
+ }
8545
+
7108
8546
  input DeleteOrderCommodityInput {
7109
8547
  organizationId: Int!
7110
8548
  orderId: Int!
@@ -7131,6 +8569,11 @@ input DeleteOrganizationConfigInput {
7131
8569
  organizationConfigId: Int!
7132
8570
  }
7133
8571
 
8572
+ input DeleteOrganizationUserInput {
8573
+ organizationId: Int!
8574
+ userEmployeeId: Int!
8575
+ }
8576
+
7134
8577
  input DeletePackageCategoryInput {
7135
8578
  organizationId: Int!
7136
8579
  packageCategoryCode: String!
@@ -7194,6 +8637,11 @@ input DeleteStateInput {
7194
8637
  stateCode: String!
7195
8638
  }
7196
8639
 
8640
+ input DeleteTagInput {
8641
+ organizationId: Int!
8642
+ tagId: Int!
8643
+ }
8644
+
7197
8645
  input DeleteTrackingEventInput {
7198
8646
  organizationId: Int!
7199
8647
  trackingEventId: Int!
@@ -7256,6 +8704,11 @@ input DimensionsUnitOperationFilterInput {
7256
8704
  nin: [DimensionsUnit!] @cost(weight: "10")
7257
8705
  }
7258
8706
 
8707
+ input DisableApiCredentialInput {
8708
+ organizationId: Int!
8709
+ apiCredentialId: Int!
8710
+ }
8711
+
7259
8712
  input DiscountDtoInput {
7260
8713
  discountId: Int!
7261
8714
  activationCount: Int!
@@ -7324,6 +8777,11 @@ input DocumentTemplateTypeOperationFilterInput {
7324
8777
  nin: [DocumentTemplateType!] @cost(weight: "10")
7325
8778
  }
7326
8779
 
8780
+ input EnableApiCredentialInput {
8781
+ organizationId: Int!
8782
+ apiCredentialId: Int!
8783
+ }
8784
+
7327
8785
  input EventTriggerDtoInput {
7328
8786
  entity: String!
7329
8787
  eventName: String!
@@ -7397,6 +8855,13 @@ input ImportEquipmentTypesInput {
7397
8855
  keys: [String!]
7398
8856
  }
7399
8857
 
8858
+ input ImportPortsInput {
8859
+ organizationId: Int!
8860
+ fileUploadUrl: String!
8861
+ keys: [String!]
8862
+ updateIfExists: Boolean! = false
8863
+ }
8864
+
7400
8865
  input ImportPostalCodesInput {
7401
8866
  organizationId: Int!
7402
8867
  fileUploadUrl: String!
@@ -7419,6 +8884,7 @@ input InstallAppManifestCommandValuesInput {
7419
8884
  repositoryBranch: String!
7420
8885
  force: Boolean
7421
8886
  isAutoUpdateEnabled: Boolean
8887
+ skipModulesWithChanges: Boolean
7422
8888
  }
7423
8889
 
7424
8890
  input InstallAppManifestInput {
@@ -7441,6 +8907,31 @@ input IntOperationFilterInput {
7441
8907
  nlte: Int @cost(weight: "10")
7442
8908
  }
7443
8909
 
8910
+ input InventoryItemAllTagsGqlDtoFilterInput {
8911
+ and: [InventoryItemAllTagsGqlDtoFilterInput!]
8912
+ or: [InventoryItemAllTagsGqlDtoFilterInput!]
8913
+ inventoryItemId: IntOperationFilterInput
8914
+ organizationId: IntOperationFilterInput
8915
+ tagId: IntOperationFilterInput
8916
+ tagName: StringOperationFilterInput
8917
+ tagDescription: StringOperationFilterInput
8918
+ tagEntityName: StringOperationFilterInput
8919
+ customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
8920
+ }
8921
+
8922
+ input InventoryItemTagGqlDtoFilterInput {
8923
+ and: [InventoryItemTagGqlDtoFilterInput!]
8924
+ or: [InventoryItemTagGqlDtoFilterInput!]
8925
+ inventoryItemId: IntOperationFilterInput
8926
+ tagId: IntOperationFilterInput
8927
+ tag: tagItemFilterInput
8928
+ customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
8929
+ createdBy: StringOperationFilterInput
8930
+ created: DateTimeOperationFilterInput
8931
+ lastModifiedBy: StringOperationFilterInput
8932
+ lastModified: DateTimeOperationFilterInput
8933
+ }
8934
+
7444
8935
  input ItemTypeOperationFilterInput {
7445
8936
  eq: ItemType @cost(weight: "10")
7446
8937
  neq: ItemType @cost(weight: "10")
@@ -7489,6 +8980,12 @@ input KeyValuePairOfStringAndObjectFilterInput {
7489
8980
  key: StringOperationFilterInput
7490
8981
  }
7491
8982
 
8983
+ input LinkChargesToAccountingTransactionInput {
8984
+ organizationId: Int!
8985
+ accountingTransactionId: Int!
8986
+ chargeIds: [Int!]!
8987
+ }
8988
+
7492
8989
  input LinkDtoFilterInput {
7493
8990
  and: [LinkDtoFilterInput!]
7494
8991
  or: [LinkDtoFilterInput!]
@@ -7519,6 +9016,20 @@ input ListFilterInputTypeOfAttachmentGqlDtoFilterInput {
7519
9016
  any: Boolean @cost(weight: "10")
7520
9017
  }
7521
9018
 
9019
+ input ListFilterInputTypeOfCommodityAllTagsGqlDtoFilterInput {
9020
+ all: CommodityAllTagsGqlDtoFilterInput @cost(weight: "10")
9021
+ none: CommodityAllTagsGqlDtoFilterInput @cost(weight: "10")
9022
+ some: CommodityAllTagsGqlDtoFilterInput @cost(weight: "10")
9023
+ any: Boolean @cost(weight: "10")
9024
+ }
9025
+
9026
+ input ListFilterInputTypeOfCommodityTagGqlDtoFilterInput {
9027
+ all: CommodityTagGqlDtoFilterInput @cost(weight: "10")
9028
+ none: CommodityTagGqlDtoFilterInput @cost(weight: "10")
9029
+ some: CommodityTagGqlDtoFilterInput @cost(weight: "10")
9030
+ any: Boolean @cost(weight: "10")
9031
+ }
9032
+
7522
9033
  input ListFilterInputTypeOfComponentInputFilterInput {
7523
9034
  all: ComponentInputFilterInput @cost(weight: "10")
7524
9035
  none: ComponentInputFilterInput @cost(weight: "10")
@@ -7533,6 +9044,20 @@ input ListFilterInputTypeOfConditionFilterInput {
7533
9044
  any: Boolean @cost(weight: "10")
7534
9045
  }
7535
9046
 
9047
+ input ListFilterInputTypeOfInventoryItemAllTagsGqlDtoFilterInput {
9048
+ all: InventoryItemAllTagsGqlDtoFilterInput @cost(weight: "10")
9049
+ none: InventoryItemAllTagsGqlDtoFilterInput @cost(weight: "10")
9050
+ some: InventoryItemAllTagsGqlDtoFilterInput @cost(weight: "10")
9051
+ any: Boolean @cost(weight: "10")
9052
+ }
9053
+
9054
+ input ListFilterInputTypeOfInventoryItemTagGqlDtoFilterInput {
9055
+ all: InventoryItemTagGqlDtoFilterInput @cost(weight: "10")
9056
+ none: InventoryItemTagGqlDtoFilterInput @cost(weight: "10")
9057
+ some: InventoryItemTagGqlDtoFilterInput @cost(weight: "10")
9058
+ any: Boolean @cost(weight: "10")
9059
+ }
9060
+
7536
9061
  input ListFilterInputTypeOfJobFilterInput {
7537
9062
  all: JobFilterInput @cost(weight: "10")
7538
9063
  none: JobFilterInput @cost(weight: "10")
@@ -7561,6 +9086,20 @@ input ListFilterInputTypeOfLinkDtoFilterInput {
7561
9086
  any: Boolean @cost(weight: "10")
7562
9087
  }
7563
9088
 
9089
+ input ListFilterInputTypeOfOrderAllTagsGqlDtoFilterInput {
9090
+ all: OrderAllTagsGqlDtoFilterInput @cost(weight: "10")
9091
+ none: OrderAllTagsGqlDtoFilterInput @cost(weight: "10")
9092
+ some: OrderAllTagsGqlDtoFilterInput @cost(weight: "10")
9093
+ any: Boolean @cost(weight: "10")
9094
+ }
9095
+
9096
+ input ListFilterInputTypeOfOrderTagGqlDtoFilterInput {
9097
+ all: OrderTagGqlDtoFilterInput @cost(weight: "10")
9098
+ none: OrderTagGqlDtoFilterInput @cost(weight: "10")
9099
+ some: OrderTagGqlDtoFilterInput @cost(weight: "10")
9100
+ any: Boolean @cost(weight: "10")
9101
+ }
9102
+
7564
9103
  input ListFilterInputTypeOfOutputMapFilterInput {
7565
9104
  all: OutputMapFilterInput @cost(weight: "10")
7566
9105
  none: OutputMapFilterInput @cost(weight: "10")
@@ -7694,6 +9233,13 @@ input ListFilterInputTypeOfdiscountFilterInput {
7694
9233
  any: Boolean @cost(weight: "10")
7695
9234
  }
7696
9235
 
9236
+ input ListFilterInputTypeOfdivisionFilterInput {
9237
+ all: divisionFilterInput @cost(weight: "10")
9238
+ none: divisionFilterInput @cost(weight: "10")
9239
+ some: divisionFilterInput @cost(weight: "10")
9240
+ any: Boolean @cost(weight: "10")
9241
+ }
9242
+
7697
9243
  input ListFilterInputTypeOfmodeOfTransportationFilterInput {
7698
9244
  all: modeOfTransportationFilterInput @cost(weight: "10")
7699
9245
  none: modeOfTransportationFilterInput @cost(weight: "10")
@@ -7701,6 +9247,13 @@ input ListFilterInputTypeOfmodeOfTransportationFilterInput {
7701
9247
  any: Boolean @cost(weight: "10")
7702
9248
  }
7703
9249
 
9250
+ input ListFilterInputTypeOfnoteFilterInput {
9251
+ all: noteFilterInput @cost(weight: "10")
9252
+ none: noteFilterInput @cost(weight: "10")
9253
+ some: noteFilterInput @cost(weight: "10")
9254
+ any: Boolean @cost(weight: "10")
9255
+ }
9256
+
7704
9257
  input ListFilterInputTypeOforderCarrierFilterInput {
7705
9258
  all: orderCarrierFilterInput @cost(weight: "10")
7706
9259
  none: orderCarrierFilterInput @cost(weight: "10")
@@ -7820,6 +9373,16 @@ input ListListDecimalOperationFilterInput {
7820
9373
  any: Boolean @cost(weight: "10")
7821
9374
  }
7822
9375
 
9376
+ input ListListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput {
9377
+ all: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
9378
+ @cost(weight: "10")
9379
+ none: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
9380
+ @cost(weight: "10")
9381
+ some: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
9382
+ @cost(weight: "10")
9383
+ any: Boolean @cost(weight: "10")
9384
+ }
9385
+
7823
9386
  input ListStringOperationFilterInput {
7824
9387
  all: StringOperationFilterInput @cost(weight: "10")
7825
9388
  none: StringOperationFilterInput @cost(weight: "10")
@@ -7960,6 +9523,31 @@ input NullableOfWorkflowRuntimeExecutionModeOperationFilterInput {
7960
9523
  nin: [WorkflowRuntimeExecutionMode] @cost(weight: "10")
7961
9524
  }
7962
9525
 
9526
+ input OrderAllTagsGqlDtoFilterInput {
9527
+ and: [OrderAllTagsGqlDtoFilterInput!]
9528
+ or: [OrderAllTagsGqlDtoFilterInput!]
9529
+ orderId: IntOperationFilterInput
9530
+ organizationId: IntOperationFilterInput
9531
+ tagId: IntOperationFilterInput
9532
+ tagName: StringOperationFilterInput
9533
+ tagDescription: StringOperationFilterInput
9534
+ tagEntityName: StringOperationFilterInput
9535
+ customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
9536
+ }
9537
+
9538
+ input OrderTagGqlDtoFilterInput {
9539
+ and: [OrderTagGqlDtoFilterInput!]
9540
+ or: [OrderTagGqlDtoFilterInput!]
9541
+ orderId: IntOperationFilterInput
9542
+ tagId: IntOperationFilterInput
9543
+ tag: tagItemFilterInput
9544
+ customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
9545
+ createdBy: StringOperationFilterInput
9546
+ created: DateTimeOperationFilterInput
9547
+ lastModifiedBy: StringOperationFilterInput
9548
+ lastModified: DateTimeOperationFilterInput
9549
+ }
9550
+
7963
9551
  input OrderTypesOperationFilterInput {
7964
9552
  eq: OrderTypes @cost(weight: "10")
7965
9553
  neq: OrderTypes @cost(weight: "10")
@@ -8013,11 +9601,13 @@ input RateDataFilterInput {
8013
9601
  or: [RateDataFilterInput!]
8014
9602
  rateIndex: IntOperationFilterInput
8015
9603
  rateValue: DecimalOperationFilterInput
9604
+ packageTypeId: IntOperationFilterInput
8016
9605
  }
8017
9606
 
8018
9607
  input RateDataInput {
8019
9608
  rateIndex: Int
8020
9609
  rateValue: Decimal!
9610
+ packageTypeId: Int
8021
9611
  }
8022
9612
 
8023
9613
  input RateTypeOperationFilterInput {
@@ -8027,6 +9617,24 @@ input RateTypeOperationFilterInput {
8027
9617
  nin: [RateType!] @cost(weight: "10")
8028
9618
  }
8029
9619
 
9620
+ input RegenerateApiCredentialSecretInput {
9621
+ organizationId: Int!
9622
+ apiCredentialId: Int!
9623
+ }
9624
+
9625
+ input RegenerateOrderDocumentInput {
9626
+ organizationId: Int!
9627
+ orderId: Int!
9628
+ orderDocumentId: Int!
9629
+ metadata: MapOfObject
9630
+ }
9631
+
9632
+ input RenameNoteThreadInput {
9633
+ organizationId: Int!
9634
+ threadName: String!
9635
+ newName: String!
9636
+ }
9637
+
8030
9638
  input ScheduleFilterInput {
8031
9639
  and: [ScheduleFilterInput!]
8032
9640
  or: [ScheduleFilterInput!]
@@ -8138,6 +9746,12 @@ input TransportationMethodOperationFilterInput {
8138
9746
  nin: [TransportationMethod!] @cost(weight: "10")
8139
9747
  }
8140
9748
 
9749
+ input UnlinkChargesFromAccountingTransactionInput {
9750
+ organizationId: Int!
9751
+ accountingTransactionId: Int!
9752
+ chargeIds: [Int!]!
9753
+ }
9754
+
8141
9755
  input UpdateAccountingAccountInput {
8142
9756
  organizationId: Int!
8143
9757
  accountId: Int!
@@ -8162,6 +9776,12 @@ input UpdateActionEventInput {
8162
9776
  values: MapOfObject
8163
9777
  }
8164
9778
 
9779
+ input UpdateApiCredentialInput {
9780
+ organizationId: Int!
9781
+ apiCredentialId: Int!
9782
+ values: MapOfObject
9783
+ }
9784
+
8165
9785
  input UpdateAppManifestInput {
8166
9786
  organizationId: Int!
8167
9787
  appManifestId: UUID!
@@ -8369,6 +9989,19 @@ input UpdateModeOfTransportationInput {
8369
9989
  values: MapOfObject
8370
9990
  }
8371
9991
 
9992
+ input UpdateNoteCommandValuesInput {
9993
+ content: MapOfObject
9994
+ mentions: [MapOfObject]
9995
+ tags: [String!]
9996
+ isPinned: Boolean
9997
+ }
9998
+
9999
+ input UpdateNoteInput {
10000
+ organizationId: Int!
10001
+ noteId: UUID!
10002
+ values: UpdateNoteCommandValuesInput!
10003
+ }
10004
+
8372
10005
  input UpdateOrderCommodityInput {
8373
10006
  organizationId: Int!
8374
10007
  orderId: Int!
@@ -8412,6 +10045,27 @@ input UpdateOrganizationInput {
8412
10045
  values: MapOfObject
8413
10046
  }
8414
10047
 
10048
+ input UpdateOrganizationUserCommandValuesInput {
10049
+ divisionId: Int
10050
+ firstName: String
10051
+ lastName: String
10052
+ email: String
10053
+ phoneNumber: String
10054
+ userName: String
10055
+ password: String
10056
+ visibleTransactions: VisibleTransactions
10057
+ isInactive: Boolean
10058
+ isInactiveGlobal: Boolean
10059
+ userGroups: [Int!]
10060
+ additionalDivisionIds: [Int!]
10061
+ }
10062
+
10063
+ input UpdateOrganizationUserInput {
10064
+ organizationId: Int!
10065
+ userEmployeeId: Int!
10066
+ values: UpdateOrganizationUserCommandValuesInput!
10067
+ }
10068
+
8415
10069
  input UpdatePackageCategoryInput {
8416
10070
  organizationId: Int!
8417
10071
  packageCategoryCode: String!
@@ -8487,6 +10141,12 @@ input UpdateStateInput {
8487
10141
  values: MapOfObject
8488
10142
  }
8489
10143
 
10144
+ input UpdateTagInput {
10145
+ organizationId: Int!
10146
+ tagId: Int!
10147
+ values: MapOfObject
10148
+ }
10149
+
8490
10150
  input UpdateTrackingEventInput {
8491
10151
  organizationId: Int!
8492
10152
  trackingEventId: Int!
@@ -8558,6 +10218,7 @@ input UserEmployeeDtoInput {
8558
10218
  userNormalizedUserName: String
8559
10219
  userUserName: String
8560
10220
  employeeDivisionId: Int!
10221
+ employeeParentContactId: Int
8561
10222
  userGroups: [UserGroupDtoInput!]!
8562
10223
  links: [LinkDtoInput!]!
8563
10224
  }
@@ -8583,6 +10244,7 @@ input UserGroupDtoInput {
8583
10244
  lastModifiedBy: String!
8584
10245
  name: String!
8585
10246
  organizationId: Int!
10247
+ customValues: [MapOfObject!]
8586
10248
  userRoles: [ApplicationUserRoleDtoInput!]!
8587
10249
  links: [LinkDtoInput!]!
8588
10250
  }
@@ -8881,6 +10543,7 @@ input chargeFilterInput {
8881
10543
  accountingTransactions: ListFilterInputTypeOfaccountingTransactionFilterInput
8882
10544
  orders: ListFilterInputTypeOforderFilterInput
8883
10545
  salesTax: salesTaxFilterInput
10546
+ tariff: TariffOptionsFilterInput
8884
10547
  customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
8885
10548
  }
8886
10549
 
@@ -8948,6 +10611,8 @@ input commodityFilterInput {
8948
10611
  width: DecimalOperationFilterInput
8949
10612
  trackingNumbers: ListFilterInputTypeOfcommodityTrackingNumberFilterInput
8950
10613
  orderCommodities: ListFilterInputTypeOforderCommodityFilterInput
10614
+ commodityTags: ListFilterInputTypeOfCommodityTagGqlDtoFilterInput
10615
+ allTags: ListFilterInputTypeOfCommodityAllTagsGqlDtoFilterInput
8951
10616
  containerCommodity: commodityFilterInput
8952
10617
  containerCommodities: ListFilterInputTypeOfcommodityFilterInput
8953
10618
  shipments: ListFilterInputTypeOforderFilterInput
@@ -8957,6 +10622,7 @@ input commodityFilterInput {
8957
10622
  valueByTotal: BooleanOperationFilterInput
8958
10623
  packageTypeName: StringOperationFilterInput
8959
10624
  isDeleted: BooleanOperationFilterInput
10625
+ billToContactId: IntOperationFilterInput
8960
10626
  links: ListFilterInputTypeOfLinkDtoFilterInput
8961
10627
  }
8962
10628
 
@@ -9249,6 +10915,9 @@ input divisionFilterInput {
9249
10915
  streetAndNumber: StringOperationFilterInput
9250
10916
  useDivisionInDocumentHeaders: BooleanOperationFilterInput
9251
10917
  zipCode: StringOperationFilterInput
10918
+ parentDivisionId: IntOperationFilterInput
10919
+ parentDivision: divisionFilterInput
10920
+ nestedDivisions: ListFilterInputTypeOfdivisionFilterInput
9252
10921
  updatedUser: userFilterInput
9253
10922
  createdUser: userFilterInput
9254
10923
  }
@@ -9326,6 +10995,8 @@ input inventoryItemFilterInput {
9326
10995
  width: DecimalOperationFilterInput
9327
10996
  updatedUser: userFilterInput
9328
10997
  createdUser: userFilterInput
10998
+ inventoryItemTags: ListFilterInputTypeOfInventoryItemTagGqlDtoFilterInput
10999
+ allTags: ListFilterInputTypeOfInventoryItemAllTagsGqlDtoFilterInput
9329
11000
  }
9330
11001
 
9331
11002
  input jobStatusFilterInput {
@@ -9363,6 +11034,43 @@ input modeOfTransportationFilterInput {
9363
11034
  createdUser: userFilterInput
9364
11035
  }
9365
11036
 
11037
+ input noteFilterInput {
11038
+ and: [noteFilterInput!]
11039
+ or: [noteFilterInput!]
11040
+ id: UuidOperationFilterInput
11041
+ threadId: UuidOperationFilterInput
11042
+ threadName: StringOperationFilterInput
11043
+ content: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
11044
+ mentions: ListListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
11045
+ tags: ListStringOperationFilterInput
11046
+ isPinned: BooleanOperationFilterInput
11047
+ created: DateTimeOperationFilterInput
11048
+ createdBy: StringOperationFilterInput
11049
+ lastModified: DateTimeOperationFilterInput
11050
+ lastModifiedBy: StringOperationFilterInput
11051
+ createdUser: userFilterInput
11052
+ updatedUser: userFilterInput
11053
+ thread: noteThreadFilterInput
11054
+ }
11055
+
11056
+ input noteThreadFilterInput {
11057
+ and: [noteThreadFilterInput!]
11058
+ or: [noteThreadFilterInput!]
11059
+ id: UuidOperationFilterInput
11060
+ organizationId: IntOperationFilterInput
11061
+ name: StringOperationFilterInput
11062
+ slug: StringOperationFilterInput
11063
+ metadata: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
11064
+ created: DateTimeOperationFilterInput
11065
+ createdBy: StringOperationFilterInput
11066
+ lastModified: DateTimeOperationFilterInput
11067
+ lastModifiedBy: StringOperationFilterInput
11068
+ createdUser: userFilterInput
11069
+ updatedUser: userFilterInput
11070
+ notes: ListFilterInputTypeOfnoteFilterInput
11071
+ links: ListFilterInputTypeOfLinkDtoFilterInput
11072
+ }
11073
+
9366
11074
  input orderCarrierFilterInput {
9367
11075
  and: [orderCarrierFilterInput!]
9368
11076
  or: [orderCarrierFilterInput!]
@@ -9404,6 +11112,7 @@ input orderDocumentFilterInput {
9404
11112
  linkToDocument: StringOperationFilterInput
9405
11113
  updatedUser: userFilterInput
9406
11114
  createdUser: userFilterInput
11115
+ workflowId: UuidOperationFilterInput
9407
11116
  }
9408
11117
 
9409
11118
  input orderEntityFilterInput {
@@ -9483,6 +11192,9 @@ input orderFilterInput {
9483
11192
  jobOrders: ListFilterInputTypeOfJobOrderGqlDtoFilterInput
9484
11193
  attachments: ListFilterInputTypeOfAttachmentGqlDtoFilterInput
9485
11194
  carriers: ListFilterInputTypeOfcontactFilterInput
11195
+ orderTags: ListFilterInputTypeOfOrderTagGqlDtoFilterInput
11196
+ allTags: ListFilterInputTypeOfOrderAllTagsGqlDtoFilterInput
11197
+ allRelatedOrders: ListFilterInputTypeOforderFilterInput
9486
11198
  updatedUser: userFilterInput
9487
11199
  createdUser: userFilterInput
9488
11200
  commoditySummary: commoditySummaryFilterInput
@@ -9642,6 +11354,7 @@ input portFilterInput {
9642
11354
  name: StringOperationFilterInput
9643
11355
  portRemarks: StringOperationFilterInput
9644
11356
  stateCode: StringOperationFilterInput
11357
+ customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
9645
11358
  country: countryFilterInput
9646
11359
  state: stateFilterInput
9647
11360
  updatedUser: userFilterInput
@@ -9822,6 +11535,22 @@ input stateFilterInput {
9822
11535
  createdUser: userFilterInput
9823
11536
  }
9824
11537
 
11538
+ input tagItemFilterInput {
11539
+ and: [tagItemFilterInput!]
11540
+ or: [tagItemFilterInput!]
11541
+ tagId: IntOperationFilterInput
11542
+ organizationId: IntOperationFilterInput
11543
+ name: StringOperationFilterInput
11544
+ description: StringOperationFilterInput
11545
+ entityName: StringOperationFilterInput
11546
+ customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
11547
+ isDeleted: BooleanOperationFilterInput
11548
+ createdBy: StringOperationFilterInput
11549
+ created: DateTimeOperationFilterInput
11550
+ lastModifiedBy: StringOperationFilterInput
11551
+ lastModified: DateTimeOperationFilterInput
11552
+ }
11553
+
9825
11554
  input trackingEventFilterInput {
9826
11555
  and: [trackingEventFilterInput!]
9827
11556
  or: [trackingEventFilterInput!]
@@ -9892,6 +11621,7 @@ input userGroupFilterInput {
9892
11621
  lastModifiedBy: StringOperationFilterInput
9893
11622
  name: StringOperationFilterInput
9894
11623
  organizationId: IntOperationFilterInput
11624
+ customValues: ListFilterInputTypeOfKeyValuePairOfStringAndObjectFilterInput
9895
11625
  updatedUser: userFilterInput
9896
11626
  createdUser: userFilterInput
9897
11627
  }
@@ -9990,6 +11720,12 @@ enum AccuracyTypes {
9990
11720
  Centroid
9991
11721
  }
9992
11722
 
11723
+ enum AddressLanguage {
11724
+ English
11725
+ Ukrainian
11726
+ Russian
11727
+ }
11728
+
9993
11729
  enum AddressType {
9994
11730
  Billing
9995
11731
  Shipping
@@ -10026,6 +11762,12 @@ enum AttachmentParentType {
10026
11762
  Commodity
10027
11763
  }
10028
11764
 
11765
+ enum AttachmentStatus {
11766
+ Active
11767
+ PendingUpload
11768
+ UploadFailed
11769
+ }
11770
+
10029
11771
  enum AttachmentType {
10030
11772
  Picture
10031
11773
  OtherDocument
@@ -10123,6 +11865,8 @@ enum ContactType {
10123
11865
  PoolPoint
10124
11866
  DistributionCenter
10125
11867
  Store
11868
+ ContactUser
11869
+ USPPI
10126
11870
  }
10127
11871
 
10128
11872
  enum CustomCodeTypes {
@@ -10163,6 +11907,8 @@ enum DocumentTemplateType {
10163
11907
  ShippingLabelDocument
10164
11908
  ExportManifestExcelDocument
10165
11909
  EmailNotification
11910
+ OrganizationUserAddedEmail
11911
+ WelcomeEmail
10166
11912
  }
10167
11913
 
10168
11914
  enum EntityTypes {
@@ -10186,6 +11932,7 @@ enum EventStatus {
10186
11932
  Pending
10187
11933
  Completed
10188
11934
  Failed
11935
+ Started
10189
11936
  }
10190
11937
 
10191
11938
  enum FileType {
@@ -10271,6 +12018,7 @@ enum OrderTypes {
10271
12018
  LoadOrder
10272
12019
  BookingOrder
10273
12020
  Freight
12021
+ DeliveryOrder
10274
12022
  }
10275
12023
 
10276
12024
  enum PaidAs {
@@ -10434,6 +12182,11 @@ enum WeightUnit {
10434
12182
  Kg
10435
12183
  }
10436
12184
 
12185
+ enum WorkflowExecutionStatus {
12186
+ Success
12187
+ Failed
12188
+ }
12189
+
10437
12190
  enum WorkflowRuntimeExecutionMode {
10438
12191
  Async
10439
12192
  Sync
@@ -10478,6 +12231,9 @@ scalar DateTime @specifiedBy(url: "https://www.graphql-scalars.com/date-time")
10478
12231
  "The `Decimal` scalar type represents a decimal floating-point number."
10479
12232
  scalar Decimal
10480
12233
 
12234
+ "The `Long` scalar type represents non-fractional signed whole 64-bit numeric values. Long can represent values between -(2^63) and 2^63 - 1."
12235
+ scalar Long
12236
+
10481
12237
  scalar MapOfObject
10482
12238
 
10483
12239
  scalar MapOfPoint