@rubytech/create-realagent-code 0.1.614 → 0.1.616

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 (197) hide show
  1. package/package.json +1 -1
  2. package/payload/platform/lib/aeo-llms-txt-writer/dist/__tests__/write-llms-txt.test.d.ts +2 -0
  3. package/payload/platform/lib/aeo-llms-txt-writer/dist/__tests__/write-llms-txt.test.d.ts.map +1 -0
  4. package/payload/platform/lib/aeo-llms-txt-writer/dist/__tests__/write-llms-txt.test.js +291 -0
  5. package/payload/platform/lib/aeo-llms-txt-writer/dist/__tests__/write-llms-txt.test.js.map +1 -0
  6. package/payload/platform/lib/aeo-llms-txt-writer/dist/index.d.ts +13 -1
  7. package/payload/platform/lib/aeo-llms-txt-writer/dist/index.d.ts.map +1 -1
  8. package/payload/platform/lib/aeo-llms-txt-writer/dist/index.js +127 -18
  9. package/payload/platform/lib/aeo-llms-txt-writer/dist/index.js.map +1 -1
  10. package/payload/platform/lib/aeo-llms-txt-writer/src/__tests__/write-llms-txt.test.ts +391 -0
  11. package/payload/platform/lib/aeo-llms-txt-writer/src/index.ts +156 -19
  12. package/payload/platform/lib/aeo-llms-txt-writer/vitest.config.ts +10 -0
  13. package/payload/platform/lib/mcp-spawn-tee/dist/index.d.ts +15 -1
  14. package/payload/platform/lib/mcp-spawn-tee/dist/index.d.ts.map +1 -1
  15. package/payload/platform/lib/mcp-spawn-tee/dist/index.js +129 -7
  16. package/payload/platform/lib/mcp-spawn-tee/dist/index.js.map +1 -1
  17. package/payload/platform/lib/mcp-spawn-tee/src/__tests__/spawn-tee.test.ts +227 -0
  18. package/payload/platform/lib/mcp-spawn-tee/src/index.ts +133 -6
  19. package/payload/platform/plugins/admin/lib/mcp-spawn-tee/index.js +129 -7
  20. package/payload/platform/plugins/admin/mcp/dist/index.js +11 -3
  21. package/payload/platform/plugins/admin/mcp/dist/index.js.map +1 -1
  22. package/payload/platform/plugins/admin/mcp/dist/tools/publish-site.d.ts +3 -0
  23. package/payload/platform/plugins/admin/mcp/dist/tools/publish-site.d.ts.map +1 -1
  24. package/payload/platform/plugins/admin/mcp/dist/tools/publish-site.js +38 -20
  25. package/payload/platform/plugins/admin/mcp/dist/tools/publish-site.js.map +1 -1
  26. package/payload/platform/plugins/admin/skills/platform-architecture/SKILL.md +6 -5
  27. package/payload/platform/plugins/admin/skills/publish-site/SKILL.md +3 -0
  28. package/payload/platform/plugins/admin/skills/whats-new/SKILL.md +13 -0
  29. package/payload/platform/plugins/aeo/PLUGIN.md +1 -1
  30. package/payload/platform/plugins/aeo/lib/mcp-spawn-tee/index.js +129 -7
  31. package/payload/platform/plugins/aeo/mcp/dist/index.js +17 -10
  32. package/payload/platform/plugins/aeo/mcp/dist/index.js.map +1 -1
  33. package/payload/platform/plugins/browser/PLUGIN.md +1 -1
  34. package/payload/platform/plugins/browser/lib/mcp-spawn-tee/index.js +129 -7
  35. package/payload/platform/plugins/connector/lib/mcp-spawn-tee/index.js +129 -7
  36. package/payload/platform/plugins/contacts/lib/mcp-spawn-tee/index.js +129 -7
  37. package/payload/platform/plugins/dispatch/lib/mcp-spawn-tee/index.js +129 -7
  38. package/payload/platform/plugins/docs/references/aeo.md +4 -3
  39. package/payload/platform/plugins/docs/references/plugins-guide.md +1 -1
  40. package/payload/platform/plugins/email/lib/mcp-spawn-tee/index.js +129 -7
  41. package/payload/platform/plugins/filesystem/lib/mcp-spawn-tee/index.js +129 -7
  42. package/payload/platform/plugins/google/lib/mcp-spawn-tee/index.js +129 -7
  43. package/payload/platform/plugins/graph-viewer/lib/mcp-spawn-tee/index.js +129 -7
  44. package/payload/platform/plugins/inventory/lib/mcp-spawn-tee/index.js +129 -7
  45. package/payload/platform/plugins/ledger/lib/mcp-spawn-tee/index.js +129 -7
  46. package/payload/platform/plugins/memory/lib/mcp-spawn-tee/index.js +129 -7
  47. package/payload/platform/plugins/outlook/lib/mcp-spawn-tee/index.js +129 -7
  48. package/payload/platform/plugins/quickbooks/lib/mcp-spawn-tee/index.js +129 -7
  49. package/payload/platform/plugins/replicate/lib/mcp-spawn-tee/index.js +129 -7
  50. package/payload/platform/plugins/scheduling/PLUGIN.md +3 -4
  51. package/payload/platform/plugins/scheduling/lib/mcp-spawn-tee/index.js +129 -7
  52. package/payload/platform/plugins/scheduling/mcp/dist/index.js +0 -6
  53. package/payload/platform/plugins/scheduling/mcp/dist/index.js.map +1 -1
  54. package/payload/platform/plugins/scheduling/mcp/dist/lib/__tests__/gate-audits.test.js +65 -20
  55. package/payload/platform/plugins/scheduling/mcp/dist/lib/__tests__/gate-audits.test.js.map +1 -1
  56. package/payload/platform/plugins/scheduling/mcp/dist/lib/__tests__/gate-classification.test.js +20 -0
  57. package/payload/platform/plugins/scheduling/mcp/dist/lib/__tests__/gate-classification.test.js.map +1 -1
  58. package/payload/platform/plugins/scheduling/mcp/dist/lib/gate.d.ts +12 -4
  59. package/payload/platform/plugins/scheduling/mcp/dist/lib/gate.d.ts.map +1 -1
  60. package/payload/platform/plugins/scheduling/mcp/dist/lib/gate.js.map +1 -1
  61. package/payload/platform/plugins/scheduling/mcp/dist/lib/schedule-audit.d.ts.map +1 -1
  62. package/payload/platform/plugins/scheduling/mcp/dist/lib/schedule-audit.js +39 -6
  63. package/payload/platform/plugins/scheduling/mcp/dist/lib/schedule-audit.js.map +1 -1
  64. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/gate-dispatch-wiring.test.js +21 -6
  65. package/payload/platform/plugins/scheduling/mcp/dist/scripts/__tests__/gate-dispatch-wiring.test.js.map +1 -1
  66. package/payload/platform/plugins/scheduling/mcp/dist/scripts/check-due-events.js +26 -5
  67. package/payload/platform/plugins/scheduling/mcp/dist/scripts/check-due-events.js.map +1 -1
  68. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-gate-waiver.test.js +17 -51
  69. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-gate-waiver.test.js.map +1 -1
  70. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-gate-write.test.js +6 -4
  71. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/schedule-gate-write.test.js.map +1 -1
  72. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/scheduling-gate.test.js +113 -1
  73. package/payload/platform/plugins/scheduling/mcp/dist/tools/__tests__/scheduling-gate.test.js.map +1 -1
  74. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.d.ts +8 -18
  75. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.d.ts.map +1 -1
  76. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.js +14 -27
  77. package/payload/platform/plugins/scheduling/mcp/dist/tools/schedule-event.js.map +1 -1
  78. package/payload/platform/plugins/scheduling/mcp/dist/tools/scheduling-gate.d.ts.map +1 -1
  79. package/payload/platform/plugins/scheduling/mcp/dist/tools/scheduling-gate.js +125 -56
  80. package/payload/platform/plugins/scheduling/mcp/dist/tools/scheduling-gate.js.map +1 -1
  81. package/payload/platform/plugins/storage-broker/lib/mcp-spawn-tee/index.js +129 -7
  82. package/payload/platform/plugins/url-get/lib/mcp-spawn-tee/index.js +129 -7
  83. package/payload/platform/plugins/voice-mirror/lib/mcp-spawn-tee/index.js +129 -7
  84. package/payload/platform/plugins/whatsapp/lib/mcp-spawn-tee/index.js +129 -7
  85. package/payload/platform/plugins/work/lib/mcp-spawn-tee/index.js +129 -7
  86. package/payload/platform/plugins/workflows/lib/mcp-spawn-tee/index.js +129 -7
  87. package/payload/platform/scripts/__tests__/vnc-cdp-liveness.test.sh +270 -19
  88. package/payload/platform/scripts/vnc.sh +174 -71
  89. package/payload/platform/services/claude-session-manager/dist/index.js +17 -0
  90. package/payload/platform/services/claude-session-manager/dist/index.js.map +1 -1
  91. package/payload/platform/services/claude-session-manager/dist/mcp-helper-census.d.ts +80 -0
  92. package/payload/platform/services/claude-session-manager/dist/mcp-helper-census.d.ts.map +1 -0
  93. package/payload/platform/services/claude-session-manager/dist/mcp-helper-census.js +201 -0
  94. package/payload/platform/services/claude-session-manager/dist/mcp-helper-census.js.map +1 -0
  95. package/payload/premium-plugins/real-agent/plugins/buyers/lib/mcp-spawn-tee/index.js +129 -7
  96. package/payload/premium-plugins/real-agent/plugins/estate-sales/lib/mcp-spawn-tee/index.js +129 -7
  97. package/payload/premium-plugins/real-agent/plugins/loop/PLUGIN.md +12 -0
  98. package/payload/premium-plugins/real-agent/plugins/loop/lib/mcp-spawn-tee/index.js +129 -7
  99. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/index.js +13 -0
  100. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/index.js.map +1 -1
  101. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/field-census.d.ts +22 -0
  102. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/field-census.d.ts.map +1 -0
  103. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/field-census.js +81 -0
  104. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/field-census.js.map +1 -0
  105. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/loop-api.d.ts +17 -5
  106. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/loop-api.d.ts.map +1 -1
  107. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/loop-api.js +90 -17
  108. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/loop-api.js.map +1 -1
  109. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/loop-schema-keys.d.ts +2 -0
  110. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/loop-schema-keys.d.ts.map +1 -0
  111. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/loop-schema-keys.js +1010 -0
  112. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/lib/loop-schema-keys.js.map +1 -0
  113. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/auto-responder.js +2 -2
  114. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/auto-responder.js.map +1 -1
  115. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/customer-preferences.js +3 -3
  116. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/customer-preferences.js.map +1 -1
  117. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/feedback.d.ts +1 -0
  118. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/feedback.d.ts.map +1 -1
  119. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/feedback.js +5 -5
  120. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/feedback.js.map +1 -1
  121. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/marketing-match-batch.d.ts +1 -0
  122. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/marketing-match-batch.d.ts.map +1 -1
  123. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/marketing-match-batch.js +2 -2
  124. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/marketing-match-batch.js.map +1 -1
  125. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/marketing-match.d.ts +1 -0
  126. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/marketing-match.d.ts.map +1 -1
  127. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/marketing-match.js +4 -4
  128. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/marketing-match.js.map +1 -1
  129. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/people-detail.d.ts +1 -0
  130. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/people-detail.d.ts.map +1 -1
  131. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/people-detail.js +3 -3
  132. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/people-detail.js.map +1 -1
  133. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/people-search.d.ts +1 -0
  134. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/people-search.d.ts.map +1 -1
  135. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/people-search.js +3 -3
  136. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/people-search.js.map +1 -1
  137. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-detail.d.ts +1 -0
  138. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-detail.d.ts.map +1 -1
  139. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-detail.js +13 -6
  140. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-detail.js.map +1 -1
  141. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-listed.d.ts +1 -0
  142. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-listed.d.ts.map +1 -1
  143. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-listed.js +3 -3
  144. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-listed.js.map +1 -1
  145. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-search.d.ts +1 -0
  146. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-search.d.ts.map +1 -1
  147. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-search.js +3 -3
  148. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-search.js.map +1 -1
  149. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-sold.d.ts +1 -0
  150. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-sold.d.ts.map +1 -1
  151. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-sold.js +3 -3
  152. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/property-sold.js.map +1 -1
  153. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/supplier.js +4 -4
  154. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/supplier.js.map +1 -1
  155. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/team-availability.d.ts +1 -0
  156. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/team-availability.d.ts.map +1 -1
  157. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/team-availability.js +3 -3
  158. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/team-availability.js.map +1 -1
  159. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/team-info.d.ts +1 -0
  160. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/team-info.d.ts.map +1 -1
  161. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/team-info.js +3 -3
  162. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/team-info.js.map +1 -1
  163. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/viewing-detail.d.ts +1 -0
  164. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/viewing-detail.d.ts.map +1 -1
  165. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/viewing-detail.js +3 -3
  166. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/viewing-detail.js.map +1 -1
  167. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/viewing-search.d.ts +1 -0
  168. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/viewing-search.d.ts.map +1 -1
  169. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/viewing-search.js +3 -3
  170. package/payload/premium-plugins/real-agent/plugins/loop/mcp/dist/tools/viewing-search.js.map +1 -1
  171. package/payload/premium-plugins/real-agent/plugins/loop/mcp/package.json +2 -1
  172. package/payload/premium-plugins/real-agent/plugins/loop/mcp/scripts/generate-loop-schema-keys.mjs +87 -0
  173. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/__tests__/new-tool-shape.test.ts +1 -1
  174. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/__tests__/read-fidelity.test.ts +303 -0
  175. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/__tests__/swagger-write-coverage.test.ts +6 -6
  176. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/index.ts +13 -0
  177. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/lib/field-census.ts +86 -0
  178. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/lib/loop-api.ts +116 -17
  179. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/lib/loop-schema-keys.ts +1010 -0
  180. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/auto-responder.ts +2 -2
  181. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/customer-preferences.ts +3 -3
  182. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/feedback.ts +6 -4
  183. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/marketing-match-batch.ts +4 -2
  184. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/marketing-match.ts +6 -4
  185. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/people-detail.ts +5 -3
  186. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/people-search.ts +5 -3
  187. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/property-detail.ts +17 -7
  188. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/property-listed.ts +5 -3
  189. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/property-search.ts +5 -3
  190. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/property-sold.ts +5 -3
  191. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/supplier.ts +4 -4
  192. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/team-availability.ts +5 -3
  193. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/team-info.ts +6 -3
  194. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/viewing-detail.ts +5 -3
  195. package/payload/premium-plugins/real-agent/plugins/loop/mcp/src/tools/viewing-search.ts +5 -3
  196. package/payload/premium-plugins/real-agent/plugins/property-data/lib/mcp-spawn-tee/index.js +129 -7
  197. package/payload/server/server.js +422 -251
@@ -0,0 +1,1010 @@
1
+ // GENERATED FILE — do not edit by hand.
2
+ //
3
+ // Regenerate with: npm run generate:schema-keys
4
+ //
5
+ // Derived from src/__tests__/loop-swagger.snapshot.json, a 711KB test fixture.
6
+ // This module is what the runtime imports, so it can compare what Loop actually
7
+ // sent against what Loop documents without parsing the fixture. A test asserts
8
+ // this file is byte-identical to the generator's output, so a refreshed
9
+ // snapshot without a regenerate turns red.
10
+
11
+ export const LOOP_SCHEMA_KEYS: Record<string, string[]> = {
12
+ "/customer/preferences/{personCode}": [
13
+ "clientLogo",
14
+ "clientName",
15
+ "communicationCall",
16
+ "communicationEmail",
17
+ "communicationPost",
18
+ "communicationText",
19
+ "firstName",
20
+ "gdprGeneralMarketing",
21
+ "gdprPropertyMatching",
22
+ "gdprThirdParties",
23
+ "id",
24
+ "lastName",
25
+ "masterAgentId",
26
+ "title"
27
+ ],
28
+ "/feedback/residential/sales/viewings/{id}": [
29
+ "agentAvatar",
30
+ "agentEmail",
31
+ "agentId",
32
+ "agentJobTitle",
33
+ "agentMobilePhone",
34
+ "agentName",
35
+ "attendingAgentId",
36
+ "buyerGroupName",
37
+ "buyerId",
38
+ "creatingAgentId",
39
+ "feedbackQuestions",
40
+ "masterAgentId",
41
+ "propertyAddress",
42
+ "propertyBedrooms",
43
+ "propertyId",
44
+ "propertyImage",
45
+ "propertyPrice",
46
+ "propertyPriceQualifier",
47
+ "propertyStatus",
48
+ "propertyType",
49
+ "teamAddress1",
50
+ "teamAddress2",
51
+ "teamAddress3",
52
+ "teamClientName",
53
+ "teamEmail",
54
+ "teamId",
55
+ "teamLogo",
56
+ "teamPhoneNumber",
57
+ "teamPrimaryDarkColour",
58
+ "teamPrimaryLightColour",
59
+ "teamSecondaryDarkColour",
60
+ "teamSecondaryLightColour",
61
+ "teamWebsiteUrl",
62
+ "viewingBuyerFeedback",
63
+ "viewingDateOfAppointment",
64
+ "viewingId",
65
+ "viewingSellerFeedback",
66
+ "viewingStatus",
67
+ "viewingType"
68
+ ],
69
+ "/feedback/residential/lettings/viewings/{id}": [
70
+ "agentAvatar",
71
+ "agentEmail",
72
+ "agentId",
73
+ "agentJobTitle",
74
+ "agentMobilePhone",
75
+ "agentName",
76
+ "attendingAgentId",
77
+ "creatingAgentId",
78
+ "feedbackQuestions",
79
+ "masterAgentId",
80
+ "propertyAddress",
81
+ "propertyBedrooms",
82
+ "propertyId",
83
+ "propertyImage",
84
+ "propertyRent",
85
+ "propertyStatus",
86
+ "propertyType",
87
+ "renterGroupName",
88
+ "renterId",
89
+ "teamAddress1",
90
+ "teamAddress2",
91
+ "teamAddress3",
92
+ "teamClientName",
93
+ "teamEmail",
94
+ "teamId",
95
+ "teamLogo",
96
+ "teamPhoneNumber",
97
+ "teamPrimaryDarkColour",
98
+ "teamPrimaryLightColour",
99
+ "teamSecondaryDarkColour",
100
+ "teamSecondaryLightColour",
101
+ "teamWebsiteUrl",
102
+ "viewingDateOfAppointment",
103
+ "viewingId",
104
+ "viewingLandlordFeedback",
105
+ "viewingRenterFeedback",
106
+ "viewingStatus",
107
+ "viewingType"
108
+ ],
109
+ "/marketing/matching/{id}": [
110
+ "accessibility",
111
+ "acerage",
112
+ "address_County",
113
+ "address_DisplayAddress",
114
+ "address_District",
115
+ "address_HouseNameOrNumber",
116
+ "address_HouseSecondaryNameOrNumber",
117
+ "address_Locality",
118
+ "address_Postcode",
119
+ "address_Street",
120
+ "address_Town",
121
+ "address_UDPRN",
122
+ "alarm",
123
+ "amlVerified",
124
+ "bathrooms",
125
+ "bedrooms",
126
+ "brochure",
127
+ "buildYear",
128
+ "cellar",
129
+ "councilTaxBand",
130
+ "creatingAgentId",
131
+ "dateCompleted",
132
+ "dateCreated",
133
+ "dateExchanged",
134
+ "dateInstructed",
135
+ "dateLaunched",
136
+ "dateUnderOffer",
137
+ "dateWithdrawn",
138
+ "directBookingHashCode",
139
+ "epc",
140
+ "features",
141
+ "floorArea",
142
+ "floorPlans",
143
+ "fullDescription",
144
+ "garaging",
145
+ "glazing",
146
+ "heating",
147
+ "id",
148
+ "images",
149
+ "isDirectViewingsEnabled",
150
+ "latitude",
151
+ "lift",
152
+ "listed",
153
+ "longitude",
154
+ "materialInformation",
155
+ "numberOfFloors",
156
+ "outsideSpace",
157
+ "parking",
158
+ "price",
159
+ "priceQualifier",
160
+ "propertyAge",
161
+ "propertyCondition",
162
+ "propertyType",
163
+ "receptionRooms",
164
+ "shortDescription",
165
+ "status",
166
+ "tenure",
167
+ "virtualTourUrls"
168
+ ],
169
+ "/marketing/rentals/matching/{id}": [
170
+ "accessAndAlarm",
171
+ "accessibility",
172
+ "acerage",
173
+ "address_County",
174
+ "address_DisplayAddress",
175
+ "address_District",
176
+ "address_HouseNameOrNumber",
177
+ "address_HouseSecondaryNameOrNumber",
178
+ "address_Locality",
179
+ "address_Postcode",
180
+ "address_Street",
181
+ "address_Town",
182
+ "address_UDPRN",
183
+ "alarm",
184
+ "amlVerified",
185
+ "applications",
186
+ "bathrooms",
187
+ "bedrooms",
188
+ "brochure",
189
+ "buildYear",
190
+ "cellar",
191
+ "councilTaxBand",
192
+ "creatingAgentId",
193
+ "dateCreated",
194
+ "dateFirstAvailable",
195
+ "dateInstructed",
196
+ "dateLaunched",
197
+ "dateWithdrawn",
198
+ "deposit",
199
+ "directBookingHashCode",
200
+ "epc",
201
+ "features",
202
+ "floorArea",
203
+ "floorPlans",
204
+ "fullDescription",
205
+ "furnishings",
206
+ "garaging",
207
+ "glazing",
208
+ "heating",
209
+ "hideRentOnWebsite",
210
+ "id",
211
+ "images",
212
+ "includedAlarm",
213
+ "includedBillsElectricity",
214
+ "includedBillsGas",
215
+ "includedBillsWater",
216
+ "includedDishwasher",
217
+ "includedInternet",
218
+ "includedTVLicense",
219
+ "includedTVSubscription",
220
+ "includedWashingMachine",
221
+ "isAccompanied",
222
+ "isDirectViewingsEnabled",
223
+ "isPOA",
224
+ "keys",
225
+ "latitude",
226
+ "leaseType",
227
+ "letPeriod",
228
+ "letTypeMultipleOccupancy",
229
+ "letTypeProfessional",
230
+ "letTypeStudent",
231
+ "lift",
232
+ "listed",
233
+ "longitude",
234
+ "managementFee",
235
+ "managementFeeType",
236
+ "marketListings",
237
+ "marketingFlag_ComingSoon",
238
+ "marketingFlag_DigitalCarousel",
239
+ "marketingFlag_FeaturedProperty",
240
+ "marketingFlag_ImmediatelyAvailable",
241
+ "marketingFlag_NewToMarket",
242
+ "marketingFlag_PriceReduction",
243
+ "materialInformation",
244
+ "numberOfFloors",
245
+ "outsideSpace",
246
+ "parking",
247
+ "propertyCondition",
248
+ "propertyType",
249
+ "properytAge",
250
+ "receptionRooms",
251
+ "refId",
252
+ "rent",
253
+ "rentFrequency",
254
+ "requirementNoChildren",
255
+ "requirementNoPets",
256
+ "requirementNoSharers",
257
+ "requirementNoSmokers",
258
+ "requirementNoStudents",
259
+ "rooms",
260
+ "shortDescription",
261
+ "status",
262
+ "viewingArrangements",
263
+ "viewingPreference",
264
+ "viewings",
265
+ "virtualTourUrls"
266
+ ],
267
+ "/marketing/matching/{Id}/team-profile": [
268
+ "address",
269
+ "companyName",
270
+ "email",
271
+ "logo",
272
+ "masterAgentId",
273
+ "phone",
274
+ "primaryDarkColor",
275
+ "primaryLightColor",
276
+ "secondaryDarkColor",
277
+ "secondaryLightColor",
278
+ "webSiteContactUrl",
279
+ "webSiteHomeUrl",
280
+ "webSitePropertiesUrl"
281
+ ],
282
+ "/marketing/rentals/matching/{Id}/team-profile": [
283
+ "address",
284
+ "companyName",
285
+ "email",
286
+ "logo",
287
+ "masterAgentId",
288
+ "phone",
289
+ "primaryDarkColor",
290
+ "primaryLightColor",
291
+ "secondaryDarkColor",
292
+ "secondaryLightColor",
293
+ "webSiteContactUrl",
294
+ "webSiteHomeUrl",
295
+ "webSitePropertiesUrl"
296
+ ],
297
+ "/marketing/enquiries/auto-responder/{id}/{key}": [
298
+ "enquiry",
299
+ "enquiryId",
300
+ "property",
301
+ "questions",
302
+ "settings",
303
+ "teamDetails"
304
+ ],
305
+ "/people": [
306
+ "communicationCall",
307
+ "communicationEmail",
308
+ "communicationPost",
309
+ "communicationText",
310
+ "contactNotes",
311
+ "firstName",
312
+ "gdprGeneralMarketing",
313
+ "gdprPropertyMatching",
314
+ "gdprThirdParties",
315
+ "id",
316
+ "lastName",
317
+ "primaryEmail",
318
+ "primaryEmailNotes",
319
+ "primaryEmailType",
320
+ "primaryPhone",
321
+ "primaryPhoneNotes",
322
+ "primaryPhoneType",
323
+ "title"
324
+ ],
325
+ "/people/{id}": [
326
+ "buyerProfiles",
327
+ "communicationCall",
328
+ "communicationEmail",
329
+ "communicationPost",
330
+ "communicationText",
331
+ "contactNotes",
332
+ "county",
333
+ "dateCreated",
334
+ "district",
335
+ "firstName",
336
+ "gdprGeneralMarketing",
337
+ "gdprPropertyMatching",
338
+ "gdprThirdParties",
339
+ "houseNameOrNumber",
340
+ "houseSecondaryNameOrNumber",
341
+ "id",
342
+ "landlordIds",
343
+ "lastName",
344
+ "locality",
345
+ "postcode",
346
+ "primaryEmail",
347
+ "primaryEmailNotes",
348
+ "primaryEmailType",
349
+ "primaryPhone",
350
+ "primaryPhoneNotes",
351
+ "primaryPhoneType",
352
+ "renterIds",
353
+ "sellerProfiles",
354
+ "street",
355
+ "title",
356
+ "town"
357
+ ],
358
+ "/people/buyers": [
359
+ "acceptedOfferCount",
360
+ "buyerGroupName",
361
+ "buyerIsGroup",
362
+ "financiallyVerified",
363
+ "id",
364
+ "insuranceOffered",
365
+ "maxPrice",
366
+ "minBeds",
367
+ "mortgageOffered",
368
+ "offerCount",
369
+ "position",
370
+ "purchaseReason",
371
+ "sellingPosition",
372
+ "upcomingViewingCount",
373
+ "viewingCount"
374
+ ],
375
+ "/people/buyers/{id}": [
376
+ "buyerGroupName",
377
+ "buyerIsGroup",
378
+ "financiallyVerified",
379
+ "id",
380
+ "insuranceOffered",
381
+ "maxPrice",
382
+ "minBeds",
383
+ "mortgageOffered",
384
+ "offers",
385
+ "people",
386
+ "position",
387
+ "propertyTypes",
388
+ "purchaseReason",
389
+ "requirementNotes",
390
+ "searchAreas",
391
+ "sellingPosition",
392
+ "viewings"
393
+ ],
394
+ "/people/sellers": [
395
+ "acceptedOfferCount",
396
+ "id",
397
+ "offerCount",
398
+ "price",
399
+ "propertyAddress",
400
+ "propertyId",
401
+ "propertyStatus",
402
+ "propertyType",
403
+ "sellerGroupName",
404
+ "sellerIsGroup",
405
+ "upcomingViewingCount",
406
+ "viewingCount"
407
+ ],
408
+ "/people/sellers/{id}": [
409
+ "id",
410
+ "people",
411
+ "property",
412
+ "sellerGroupName",
413
+ "sellerIsGroup"
414
+ ],
415
+ "/people/renters": [
416
+ "applicationCount",
417
+ "dateRequired",
418
+ "id",
419
+ "isTenanted",
420
+ "maxRent",
421
+ "minBeds",
422
+ "rentalGroupName",
423
+ "renterIsGroup",
424
+ "tenancyCount",
425
+ "upcomingViewingCount",
426
+ "viewingCount"
427
+ ],
428
+ "/people/renters/{id}": [
429
+ "applications",
430
+ "dateRequired",
431
+ "financiallyVerified",
432
+ "furnished",
433
+ "id",
434
+ "insuranceOffered",
435
+ "maxRent",
436
+ "minBaths",
437
+ "minBeds",
438
+ "minRecepts",
439
+ "parking",
440
+ "people",
441
+ "propertyTypes",
442
+ "rentalGroupName",
443
+ "renterIsGroup",
444
+ "renterType",
445
+ "requirementNotes",
446
+ "searchAreas",
447
+ "viewings"
448
+ ],
449
+ "/people/landlords": [
450
+ "id",
451
+ "landlordGroupName",
452
+ "landlordIsGroup",
453
+ "propertyAddress",
454
+ "propertyId",
455
+ "propertyStatus",
456
+ "propertyType"
457
+ ],
458
+ "/people/landlords/{id}": [
459
+ "id",
460
+ "landlordGroupName",
461
+ "landlordIsGroup",
462
+ "people",
463
+ "property"
464
+ ],
465
+ "/property/residential/sales": [
466
+ "bedrooms",
467
+ "dateCreated",
468
+ "id",
469
+ "offerCount",
470
+ "price",
471
+ "propertyAddress",
472
+ "propertyType",
473
+ "publishedToMatching",
474
+ "publishedToPortals",
475
+ "publishedToWebsite",
476
+ "refId",
477
+ "status",
478
+ "viewingCount"
479
+ ],
480
+ "/property/residential/sales/{id}": [
481
+ "accessibility",
482
+ "acerage",
483
+ "address_County",
484
+ "address_DisplayAddress",
485
+ "address_District",
486
+ "address_HouseNameOrNumber",
487
+ "address_HouseSecondaryNameOrNumber",
488
+ "address_Locality",
489
+ "address_Postcode",
490
+ "address_Street",
491
+ "address_Town",
492
+ "address_UDPRN",
493
+ "alarm",
494
+ "amlVerified",
495
+ "bathrooms",
496
+ "bedrooms",
497
+ "brochure",
498
+ "buildYear",
499
+ "cellar",
500
+ "councilTaxBand",
501
+ "creatingAgentId",
502
+ "dateCompleted",
503
+ "dateCreated",
504
+ "dateExchanged",
505
+ "dateInstructed",
506
+ "dateLaunched",
507
+ "dateUnderOffer",
508
+ "dateWithdrawn",
509
+ "directBookingHashCode",
510
+ "epc",
511
+ "features",
512
+ "floorArea",
513
+ "floorPlans",
514
+ "fullDescription",
515
+ "garaging",
516
+ "glazing",
517
+ "groundRent",
518
+ "heating",
519
+ "id",
520
+ "images",
521
+ "isDirectViewingsEnabled",
522
+ "latitude",
523
+ "leaseExpiryDate",
524
+ "lift",
525
+ "listed",
526
+ "localAuthority",
527
+ "longitude",
528
+ "marketListings",
529
+ "marketingFlag_ChainFree",
530
+ "marketingFlag_DevelopmentOpportunity",
531
+ "marketingFlag_DigitalCarousel",
532
+ "marketingFlag_FeaturedProperty",
533
+ "marketingFlag_NewBuild",
534
+ "marketingFlag_NewToMarket",
535
+ "marketingFlag_PriceReduction",
536
+ "materialInformation",
537
+ "numberOfFloors",
538
+ "offers",
539
+ "outsideSpace",
540
+ "parking",
541
+ "price",
542
+ "priceQualifier",
543
+ "propertyAge",
544
+ "propertyCondition",
545
+ "propertyType",
546
+ "receptionRooms",
547
+ "refId",
548
+ "rooms",
549
+ "saleBy",
550
+ "serviceCharge",
551
+ "shortDescription",
552
+ "status",
553
+ "tenure",
554
+ "viewings",
555
+ "virtualTourUrls"
556
+ ],
557
+ "/property/residential/sales/{id}/preview/{previewHash}": [
558
+ "channels",
559
+ "property"
560
+ ],
561
+ "/property/residential/sales/listed/{channel}": [
562
+ "accessibility",
563
+ "acerage",
564
+ "address_County",
565
+ "address_District",
566
+ "address_HouseNameOrNumber",
567
+ "address_HouseSecondaryNameOrNumber",
568
+ "address_Locality",
569
+ "address_Postcode",
570
+ "address_Street",
571
+ "address_Town",
572
+ "address_UDPRN",
573
+ "alarm",
574
+ "bathrooms",
575
+ "bedrooms",
576
+ "brochure",
577
+ "buildYear",
578
+ "cellar",
579
+ "channel",
580
+ "councilTaxBand",
581
+ "creatingAgentId",
582
+ "dateLaunched",
583
+ "displayAddress",
584
+ "displayAsUnderOffer",
585
+ "epc",
586
+ "features",
587
+ "floorArea",
588
+ "floorPlans",
589
+ "fullDescription",
590
+ "garaging",
591
+ "glazing",
592
+ "groundRent",
593
+ "heating",
594
+ "images",
595
+ "latitude",
596
+ "leaseExpiryDate",
597
+ "lift",
598
+ "listed",
599
+ "listingId",
600
+ "localAuthority",
601
+ "longitude",
602
+ "marketingFlag_ChainFree",
603
+ "marketingFlag_DevelopmentOpportunity",
604
+ "marketingFlag_DigitalCarousel",
605
+ "marketingFlag_FeaturedProperty",
606
+ "marketingFlag_NewBuild",
607
+ "marketingFlag_NewToMarket",
608
+ "marketingFlag_PriceReduction",
609
+ "materialInformation",
610
+ "numberOfFloors",
611
+ "outsideSpace",
612
+ "parking",
613
+ "price",
614
+ "priceQualifier",
615
+ "propertyAddress",
616
+ "propertyAge",
617
+ "propertyCondition",
618
+ "propertyId",
619
+ "propertyRefId",
620
+ "propertyType",
621
+ "receptionRooms",
622
+ "rooms",
623
+ "saleBy",
624
+ "serviceCharge",
625
+ "shortDescription",
626
+ "status",
627
+ "tenure",
628
+ "virtualTourUrls"
629
+ ],
630
+ "/property/residential/sold/{channel}": [
631
+ "accessibility",
632
+ "acerage",
633
+ "address_County",
634
+ "address_District",
635
+ "address_HouseNameOrNumber",
636
+ "address_HouseSecondaryNameOrNumber",
637
+ "address_Locality",
638
+ "address_Postcode",
639
+ "address_Street",
640
+ "address_Town",
641
+ "address_UDPRN",
642
+ "alarm",
643
+ "bathrooms",
644
+ "bedrooms",
645
+ "brochure",
646
+ "buildYear",
647
+ "cellar",
648
+ "channel",
649
+ "councilTaxBand",
650
+ "creatingAgentId",
651
+ "dateLaunched",
652
+ "displayAddress",
653
+ "displayAsUnderOffer",
654
+ "epc",
655
+ "features",
656
+ "floorArea",
657
+ "floorPlans",
658
+ "fullDescription",
659
+ "garaging",
660
+ "glazing",
661
+ "groundRent",
662
+ "heating",
663
+ "images",
664
+ "latitude",
665
+ "leaseExpiryDate",
666
+ "lift",
667
+ "listed",
668
+ "listingId",
669
+ "localAuthority",
670
+ "longitude",
671
+ "marketingFlag_ChainFree",
672
+ "marketingFlag_DevelopmentOpportunity",
673
+ "marketingFlag_DigitalCarousel",
674
+ "marketingFlag_FeaturedProperty",
675
+ "marketingFlag_NewBuild",
676
+ "marketingFlag_NewToMarket",
677
+ "marketingFlag_PriceReduction",
678
+ "materialInformation",
679
+ "numberOfFloors",
680
+ "outsideSpace",
681
+ "parking",
682
+ "price",
683
+ "priceQualifier",
684
+ "propertyAddress",
685
+ "propertyAge",
686
+ "propertyCondition",
687
+ "propertyId",
688
+ "propertyRefId",
689
+ "propertyType",
690
+ "receptionRooms",
691
+ "rooms",
692
+ "saleBy",
693
+ "serviceCharge",
694
+ "shortDescription",
695
+ "status",
696
+ "tenure",
697
+ "virtualTourUrls"
698
+ ],
699
+ "/property/residential/lettings": [
700
+ "applicationCount",
701
+ "bedrooms",
702
+ "dateCreated",
703
+ "id",
704
+ "isPOA",
705
+ "propertyAddress",
706
+ "propertyType",
707
+ "publishedToMatching",
708
+ "publishedToPortals",
709
+ "publishedToWebsite",
710
+ "refId",
711
+ "rent",
712
+ "rentFrequency",
713
+ "status",
714
+ "totalRent",
715
+ "viewingCount"
716
+ ],
717
+ "/property/residential/lettings/{id}": [
718
+ "accessAndAlarm",
719
+ "accessibility",
720
+ "acerage",
721
+ "address_County",
722
+ "address_DisplayAddress",
723
+ "address_District",
724
+ "address_HouseNameOrNumber",
725
+ "address_HouseSecondaryNameOrNumber",
726
+ "address_Locality",
727
+ "address_Postcode",
728
+ "address_Street",
729
+ "address_Town",
730
+ "address_UDPRN",
731
+ "alarm",
732
+ "amlVerified",
733
+ "applications",
734
+ "bathrooms",
735
+ "bedrooms",
736
+ "brochure",
737
+ "buildYear",
738
+ "cellar",
739
+ "councilTaxBand",
740
+ "creatingAgentId",
741
+ "dateCreated",
742
+ "dateFirstAvailable",
743
+ "dateInstructed",
744
+ "dateLaunched",
745
+ "dateWithdrawn",
746
+ "deposit",
747
+ "directBookingHashCode",
748
+ "epc",
749
+ "features",
750
+ "floorArea",
751
+ "floorPlans",
752
+ "fullDescription",
753
+ "furnishings",
754
+ "garaging",
755
+ "glazing",
756
+ "heating",
757
+ "hideRentOnWebsite",
758
+ "id",
759
+ "images",
760
+ "includedAlarm",
761
+ "includedBillsElectricity",
762
+ "includedBillsGas",
763
+ "includedBillsWater",
764
+ "includedDishwasher",
765
+ "includedInternet",
766
+ "includedTVLicense",
767
+ "includedTVSubscription",
768
+ "includedWashingMachine",
769
+ "isAccompanied",
770
+ "isDirectViewingsEnabled",
771
+ "isPOA",
772
+ "keys",
773
+ "latitude",
774
+ "leaseType",
775
+ "letTypeMultipleOccupancy",
776
+ "letTypeProfessional",
777
+ "letTypeStudent",
778
+ "lift",
779
+ "listed",
780
+ "longitude",
781
+ "managementFee",
782
+ "managementFeeType",
783
+ "marketListings",
784
+ "marketingFlag_ComingSoon",
785
+ "marketingFlag_DigitalCarousel",
786
+ "marketingFlag_FeaturedProperty",
787
+ "marketingFlag_ImmediatelyAvailable",
788
+ "marketingFlag_NewToMarket",
789
+ "marketingFlag_PriceReduction",
790
+ "materialInformation",
791
+ "numberOfFloors",
792
+ "outsideSpace",
793
+ "parking",
794
+ "propertyCondition",
795
+ "propertyType",
796
+ "properytAge",
797
+ "receptionRooms",
798
+ "refId",
799
+ "rent",
800
+ "rentFrequency",
801
+ "requirementNoChildren",
802
+ "requirementNoPets",
803
+ "requirementNoSharers",
804
+ "requirementNoSmokers",
805
+ "requirementNoStudents",
806
+ "rooms",
807
+ "shortDescription",
808
+ "status",
809
+ "totalRent",
810
+ "viewingArrangements",
811
+ "viewingPreference",
812
+ "viewings",
813
+ "virtualTourUrls"
814
+ ],
815
+ "/property/residential/lettings/{id}/preview/{previewHash}": [
816
+ "channels",
817
+ "property"
818
+ ],
819
+ "/property/residential/lettings/listed/{channel}": [
820
+ "accessibility",
821
+ "acerage",
822
+ "address_County",
823
+ "address_District",
824
+ "address_HouseNameOrNumber",
825
+ "address_HouseSecondaryNameOrNumber",
826
+ "address_Locality",
827
+ "address_Postcode",
828
+ "address_Street",
829
+ "address_Town",
830
+ "address_UDPRN",
831
+ "alarm",
832
+ "bathrooms",
833
+ "bedrooms",
834
+ "brochure",
835
+ "buildYear",
836
+ "cellar",
837
+ "channel",
838
+ "councilTaxBand",
839
+ "creatingAgentId",
840
+ "dateFirstAvailable",
841
+ "dateLaunched",
842
+ "deposit",
843
+ "displayAddress",
844
+ "epc",
845
+ "features",
846
+ "floorArea",
847
+ "floorPlans",
848
+ "fullDescription",
849
+ "garaging",
850
+ "glazing",
851
+ "heating",
852
+ "hideRentOnWebsite",
853
+ "images",
854
+ "isPOA",
855
+ "latitude",
856
+ "lettingFee",
857
+ "lettingFeeType",
858
+ "lift",
859
+ "listed",
860
+ "listingId",
861
+ "longitude",
862
+ "materialInformation",
863
+ "numberOfFloors",
864
+ "outsideSpace",
865
+ "parking",
866
+ "propertyAddress",
867
+ "propertyAge",
868
+ "propertyCondition",
869
+ "propertyId",
870
+ "propertyRefId",
871
+ "propertyType",
872
+ "receptionRooms",
873
+ "rent",
874
+ "rooms",
875
+ "shortDescription",
876
+ "status",
877
+ "virtualTourUrls"
878
+ ],
879
+ "/residential/lettings/viewings": [
880
+ "attendingAgentId",
881
+ "creatingAgentId",
882
+ "dateOfAppointment",
883
+ "dateOfAppointmentEnd",
884
+ "id",
885
+ "propertyAddress",
886
+ "propertyId",
887
+ "renterName",
888
+ "status",
889
+ "type"
890
+ ],
891
+ "/residential/lettings/viewings/{id}": [
892
+ "agentConfirmed",
893
+ "attendingAgent",
894
+ "comment",
895
+ "creatingAgent",
896
+ "dateBuyerFeedbackGiven",
897
+ "dateCreated",
898
+ "dateDone",
899
+ "dateOfAppointment",
900
+ "dateOfAppointmentEnd",
901
+ "dateSellerFeedbackGiven",
902
+ "id",
903
+ "landlord",
904
+ "landlordConfirmed",
905
+ "landlordFeedback",
906
+ "property",
907
+ "renter",
908
+ "renterConfirmed",
909
+ "renterFeedback",
910
+ "status",
911
+ "teamId",
912
+ "type"
913
+ ],
914
+ "/supplier/maintenance/{quoteCode}/{jobid}/job-list": [
915
+ "address",
916
+ "allTeams",
917
+ "clientLogo",
918
+ "companyName",
919
+ "masterAgentId",
920
+ "otherJobs",
921
+ "otherQuotes",
922
+ "outstandingJobs",
923
+ "outstandingQuotes",
924
+ "teamName"
925
+ ],
926
+ "/supplier/maintenance/{quoteCode}/{jobId}/quote-list": [
927
+ "address",
928
+ "allTeams",
929
+ "clientLogo",
930
+ "companyName",
931
+ "masterAgentId",
932
+ "otherJobs",
933
+ "otherQuotes",
934
+ "outstandingJobs",
935
+ "outstandingQuotes",
936
+ "teamName"
937
+ ],
938
+ "/supplier/board-contractor/{code}/{jobid}/job-list": [
939
+ "address",
940
+ "allTeams",
941
+ "clientLogo",
942
+ "companyName",
943
+ "completedJobs",
944
+ "masterAgentId",
945
+ "outstandingJobs",
946
+ "teamName"
947
+ ],
948
+ "/team": [
949
+ "address1",
950
+ "address2",
951
+ "address3",
952
+ "apiKey",
953
+ "clientName",
954
+ "dateCreated",
955
+ "email",
956
+ "legalName",
957
+ "matchingOutcodes",
958
+ "members",
959
+ "phoneNumber",
960
+ "primaryDarkColour",
961
+ "primaryLightColour",
962
+ "prospectingOutcodes",
963
+ "secondaryDarkColour",
964
+ "secondaryLightColour",
965
+ "teamName",
966
+ "websiteContactUrl",
967
+ "websitePropertiesUrl",
968
+ "websiteUrl"
969
+ ],
970
+ "/team/{agentId}/availability/{searchDate}": [
971
+ "agentId",
972
+ "end",
973
+ "start"
974
+ ],
975
+ "/residential/sales/viewings": [
976
+ "attendingAgentId",
977
+ "buyerName",
978
+ "creatingAgentId",
979
+ "dateOfAppointment",
980
+ "dateOfAppointmentEnd",
981
+ "id",
982
+ "propertyAddress",
983
+ "propertyId",
984
+ "status",
985
+ "type"
986
+ ],
987
+ "/residential/sales/viewings/{id}": [
988
+ "agentConfirmed",
989
+ "attendingAgent",
990
+ "buyer",
991
+ "buyerConfirmed",
992
+ "buyerFeedback",
993
+ "comment",
994
+ "creatingAgent",
995
+ "dateBuyerFeedbackGiven",
996
+ "dateCreated",
997
+ "dateDone",
998
+ "dateOfAppointment",
999
+ "dateOfAppointmentEnd",
1000
+ "dateSellerFeedbackGiven",
1001
+ "id",
1002
+ "property",
1003
+ "seller",
1004
+ "sellerConfirmed",
1005
+ "sellerFeedback",
1006
+ "status",
1007
+ "teamId",
1008
+ "type"
1009
+ ]
1010
+ };