@microsoft/managed-apps-cli 0.13.0 → 0.16.0

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/README.md +1 -1
  2. package/dist/ArgumentProvider.d.ts +1 -2
  3. package/dist/ArgumentProvider.d.ts.map +1 -1
  4. package/dist/ArgumentProvider.js.map +1 -1
  5. package/dist/Authentication/NoOpAuthenticationProvider.d.ts +25 -0
  6. package/dist/Authentication/NoOpAuthenticationProvider.d.ts.map +1 -0
  7. package/dist/Authentication/NoOpAuthenticationProvider.js +31 -0
  8. package/dist/Authentication/NoOpAuthenticationProvider.js.map +1 -0
  9. package/dist/Cli.d.ts.map +1 -1
  10. package/dist/Cli.js +14 -0
  11. package/dist/Cli.js.map +1 -1
  12. package/dist/CliSettings.d.ts.map +1 -1
  13. package/dist/CliSettings.js +2 -1
  14. package/dist/CliSettings.js.map +1 -1
  15. package/dist/Constants/CommandRegistry.d.ts.map +1 -1
  16. package/dist/Constants/CommandRegistry.js +22 -4
  17. package/dist/Constants/CommandRegistry.js.map +1 -1
  18. package/dist/Constants/HelpStrings.d.ts +21 -3
  19. package/dist/Constants/HelpStrings.d.ts.map +1 -1
  20. package/dist/Constants/HelpStrings.js +53 -18
  21. package/dist/Constants/HelpStrings.js.map +1 -1
  22. package/dist/Constants.d.ts +2 -0
  23. package/dist/Constants.d.ts.map +1 -1
  24. package/dist/Constants.js +8 -0
  25. package/dist/Constants.js.map +1 -1
  26. package/dist/HttpClient/CliHttpClient.d.ts +1 -1
  27. package/dist/HttpClient/CliHttpClient.d.ts.map +1 -1
  28. package/dist/HttpClient/CliHttpClient.js +49 -2
  29. package/dist/HttpClient/CliHttpClient.js.map +1 -1
  30. package/dist/Logger/CliLogger.d.ts +1 -1
  31. package/dist/Logger/CliLogger.d.ts.map +1 -1
  32. package/dist/Logger/CliLogger.js +23 -4
  33. package/dist/Logger/CliLogger.js.map +1 -1
  34. package/dist/Logger/ConsoleWriter.d.ts +1 -0
  35. package/dist/Logger/ConsoleWriter.d.ts.map +1 -1
  36. package/dist/Logger/ConsoleWriter.js +3 -0
  37. package/dist/Logger/ConsoleWriter.js.map +1 -1
  38. package/dist/Logger/OneDSWriter.d.ts +1 -1
  39. package/dist/Logger/OneDSWriter.d.ts.map +1 -1
  40. package/dist/Logger/OneDSWriter.js +8 -3
  41. package/dist/Logger/OneDSWriter.js.map +1 -1
  42. package/dist/Testing/MockFetch.d.ts +23 -0
  43. package/dist/Testing/MockFetch.d.ts.map +1 -0
  44. package/dist/Testing/MockFetch.js +177 -0
  45. package/dist/Testing/MockFetch.js.map +1 -0
  46. package/dist/Testing/MockRoutes.d.ts +34 -0
  47. package/dist/Testing/MockRoutes.d.ts.map +1 -0
  48. package/dist/Testing/MockRoutes.js +226 -0
  49. package/dist/Testing/MockRoutes.js.map +1 -0
  50. package/dist/Testing/fixtures/connectors/commondataserviceforapps.d.ts +6 -0
  51. package/dist/Testing/fixtures/connectors/commondataserviceforapps.d.ts.map +1 -0
  52. package/dist/Testing/fixtures/connectors/commondataserviceforapps.js +25 -0
  53. package/dist/Testing/fixtures/connectors/commondataserviceforapps.js.map +1 -0
  54. package/dist/Testing/fixtures/connectors/dataverseContactEntity.d.ts +6 -0
  55. package/dist/Testing/fixtures/connectors/dataverseContactEntity.d.ts.map +1 -0
  56. package/dist/Testing/fixtures/connectors/dataverseContactEntity.js +55 -0
  57. package/dist/Testing/fixtures/connectors/dataverseContactEntity.js.map +1 -0
  58. package/dist/Testing/fixtures/connectors/excelonlinebusiness.d.ts +6 -0
  59. package/dist/Testing/fixtures/connectors/excelonlinebusiness.d.ts.map +1 -0
  60. package/dist/Testing/fixtures/connectors/excelonlinebusiness.js +1970 -0
  61. package/dist/Testing/fixtures/connectors/excelonlinebusiness.js.map +1 -0
  62. package/dist/Testing/fixtures/connectors/kusto.d.ts +6 -0
  63. package/dist/Testing/fixtures/connectors/kusto.d.ts.map +1 -0
  64. package/dist/Testing/fixtures/connectors/kusto.js +1333 -0
  65. package/dist/Testing/fixtures/connectors/kusto.js.map +1 -0
  66. package/dist/Testing/fixtures/connectors/msnweather.d.ts +6 -0
  67. package/dist/Testing/fixtures/connectors/msnweather.d.ts.map +1 -0
  68. package/dist/Testing/fixtures/connectors/msnweather.js +917 -0
  69. package/dist/Testing/fixtures/connectors/msnweather.js.map +1 -0
  70. package/dist/Testing/fixtures/connectors/office365groups.d.ts +6 -0
  71. package/dist/Testing/fixtures/connectors/office365groups.d.ts.map +1 -0
  72. package/dist/Testing/fixtures/connectors/office365groups.js +2144 -0
  73. package/dist/Testing/fixtures/connectors/office365groups.js.map +1 -0
  74. package/dist/Testing/fixtures/connectors/office365users.d.ts +6 -0
  75. package/dist/Testing/fixtures/connectors/office365users.d.ts.map +1 -0
  76. package/dist/Testing/fixtures/connectors/office365users.js +1969 -0
  77. package/dist/Testing/fixtures/connectors/office365users.js.map +1 -0
  78. package/dist/Testing/fixtures/connectors/onedriveforbusiness.d.ts +6 -0
  79. package/dist/Testing/fixtures/connectors/onedriveforbusiness.d.ts.map +1 -0
  80. package/dist/Testing/fixtures/connectors/onedriveforbusiness.js +4873 -0
  81. package/dist/Testing/fixtures/connectors/onedriveforbusiness.js.map +1 -0
  82. package/dist/Testing/fixtures/connectors/powerappsforappmakers.d.ts +6 -0
  83. package/dist/Testing/fixtures/connectors/powerappsforappmakers.d.ts.map +1 -0
  84. package/dist/Testing/fixtures/connectors/powerappsforappmakers.js +4682 -0
  85. package/dist/Testing/fixtures/connectors/powerappsforappmakers.js.map +1 -0
  86. package/dist/Testing/fixtures/connectors/sharepointTestListMetadata.d.ts +6 -0
  87. package/dist/Testing/fixtures/connectors/sharepointTestListMetadata.d.ts.map +1 -0
  88. package/dist/Testing/fixtures/connectors/sharepointTestListMetadata.js +1078 -0
  89. package/dist/Testing/fixtures/connectors/sharepointTestListMetadata.js.map +1 -0
  90. package/dist/Testing/fixtures/connectors/sharepointonline.d.ts +6 -0
  91. package/dist/Testing/fixtures/connectors/sharepointonline.d.ts.map +1 -0
  92. package/dist/Testing/fixtures/connectors/sharepointonline.js +28 -0
  93. package/dist/Testing/fixtures/connectors/sharepointonline.js.map +1 -0
  94. package/dist/Testing/fixtures/connectors/teams.d.ts +6 -0
  95. package/dist/Testing/fixtures/connectors/teams.d.ts.map +1 -0
  96. package/dist/Testing/fixtures/connectors/teams.js +9987 -0
  97. package/dist/Testing/fixtures/connectors/teams.js.map +1 -0
  98. package/dist/Testing/fixtures/connectors/translatorv2.d.ts +6 -0
  99. package/dist/Testing/fixtures/connectors/translatorv2.d.ts.map +1 -0
  100. package/dist/Testing/fixtures/connectors/translatorv2.js +307 -0
  101. package/dist/Testing/fixtures/connectors/translatorv2.js.map +1 -0
  102. package/dist/Testing/fixtures/index.d.ts +23 -0
  103. package/dist/Testing/fixtures/index.d.ts.map +1 -0
  104. package/dist/Testing/fixtures/index.js +96 -0
  105. package/dist/Testing/fixtures/index.js.map +1 -0
  106. package/dist/Types/LoggerTypes.types.d.ts +1 -0
  107. package/dist/Types/LoggerTypes.types.d.ts.map +1 -1
  108. package/dist/Utils/CoerceCliVersion.d.ts +27 -0
  109. package/dist/Utils/CoerceCliVersion.d.ts.map +1 -0
  110. package/dist/Utils/CoerceCliVersion.js +67 -0
  111. package/dist/Utils/CoerceCliVersion.js.map +1 -0
  112. package/dist/Utils/EnvVars.d.ts +1 -1
  113. package/dist/Utils/EnvVars.d.ts.map +1 -1
  114. package/dist/Utils/EnvVars.js.map +1 -1
  115. package/dist/Utils/EnvironmentRoutingUtils.d.ts +1 -2
  116. package/dist/Utils/EnvironmentRoutingUtils.d.ts.map +1 -1
  117. package/dist/Utils/EnvironmentRoutingUtils.js.map +1 -1
  118. package/dist/Utils/MaafAppConfig.d.ts +2 -0
  119. package/dist/Utils/MaafAppConfig.d.ts.map +1 -1
  120. package/dist/Utils/MaafAppConfig.js +6 -0
  121. package/dist/Utils/MaafAppConfig.js.map +1 -1
  122. package/dist/Utils/PinCli.d.ts +18 -13
  123. package/dist/Utils/PinCli.d.ts.map +1 -1
  124. package/dist/Utils/PinCli.js +37 -18
  125. package/dist/Utils/PinCli.js.map +1 -1
  126. package/dist/Utils/RepoOption.d.ts +1 -0
  127. package/dist/Utils/RepoOption.d.ts.map +1 -1
  128. package/dist/Utils/RepoOption.js +14 -0
  129. package/dist/Utils/RepoOption.js.map +1 -1
  130. package/dist/Utils/ShareAccessRouting.d.ts +78 -0
  131. package/dist/Utils/ShareAccessRouting.d.ts.map +1 -0
  132. package/dist/Utils/ShareAccessRouting.js +93 -0
  133. package/dist/Utils/ShareAccessRouting.js.map +1 -0
  134. package/dist/Verbs/AddConnector.d.ts +6 -6
  135. package/dist/Verbs/AddConnector.d.ts.map +1 -1
  136. package/dist/Verbs/AddConnector.js +62 -36
  137. package/dist/Verbs/AddConnector.js.map +1 -1
  138. package/dist/Verbs/AddConnectorFlows.d.ts +14 -2
  139. package/dist/Verbs/AddConnectorFlows.d.ts.map +1 -1
  140. package/dist/Verbs/AddConnectorFlows.js +67 -18
  141. package/dist/Verbs/AddConnectorFlows.js.map +1 -1
  142. package/dist/Verbs/ConnectorHelpers.d.ts +79 -6
  143. package/dist/Verbs/ConnectorHelpers.d.ts.map +1 -1
  144. package/dist/Verbs/ConnectorHelpers.js +280 -32
  145. package/dist/Verbs/ConnectorHelpers.js.map +1 -1
  146. package/dist/Verbs/CreateMaafApp.d.ts +8 -16
  147. package/dist/Verbs/CreateMaafApp.d.ts.map +1 -1
  148. package/dist/Verbs/CreateMaafApp.js +224 -96
  149. package/dist/Verbs/CreateMaafApp.js.map +1 -1
  150. package/dist/Verbs/DeleteMaafApp.d.ts +13 -9
  151. package/dist/Verbs/DeleteMaafApp.d.ts.map +1 -1
  152. package/dist/Verbs/DeleteMaafApp.js +41 -21
  153. package/dist/Verbs/DeleteMaafApp.js.map +1 -1
  154. package/dist/Verbs/Dev.d.ts.map +1 -1
  155. package/dist/Verbs/Dev.js +34 -3
  156. package/dist/Verbs/Dev.js.map +1 -1
  157. package/dist/Verbs/GetMaafApp.d.ts.map +1 -1
  158. package/dist/Verbs/GetMaafApp.js +18 -6
  159. package/dist/Verbs/GetMaafApp.js.map +1 -1
  160. package/dist/Verbs/Init.d.ts.map +1 -1
  161. package/dist/Verbs/Init.js +58 -5
  162. package/dist/Verbs/Init.js.map +1 -1
  163. package/dist/Verbs/ListConnectors.d.ts.map +1 -1
  164. package/dist/Verbs/ListConnectors.js +12 -1
  165. package/dist/Verbs/ListConnectors.js.map +1 -1
  166. package/dist/Verbs/ListMaafApps.d.ts +9 -8
  167. package/dist/Verbs/ListMaafApps.d.ts.map +1 -1
  168. package/dist/Verbs/ListMaafApps.js +30 -23
  169. package/dist/Verbs/ListMaafApps.js.map +1 -1
  170. package/dist/Verbs/MaafAppPermissions.d.ts +8 -17
  171. package/dist/Verbs/MaafAppPermissions.d.ts.map +1 -1
  172. package/dist/Verbs/MaafAppPermissions.js +84 -91
  173. package/dist/Verbs/MaafAppPermissions.js.map +1 -1
  174. package/dist/Verbs/Pack.d.ts +30 -1
  175. package/dist/Verbs/Pack.d.ts.map +1 -1
  176. package/dist/Verbs/Pack.js +179 -2
  177. package/dist/Verbs/Pack.js.map +1 -1
  178. package/dist/Verbs/RefreshDataSource.d.ts +15 -0
  179. package/dist/Verbs/RefreshDataSource.d.ts.map +1 -1
  180. package/dist/Verbs/RefreshDataSource.js +41 -27
  181. package/dist/Verbs/RefreshDataSource.js.map +1 -1
  182. package/dist/Verbs/RemoveDataSource.d.ts.map +1 -1
  183. package/dist/Verbs/RemoveDataSource.js +17 -3
  184. package/dist/Verbs/RemoveDataSource.js.map +1 -1
  185. package/dist/Verbs/ShareList.d.ts +10 -0
  186. package/dist/Verbs/ShareList.d.ts.map +1 -0
  187. package/dist/Verbs/ShareList.js +254 -0
  188. package/dist/Verbs/ShareList.js.map +1 -0
  189. package/dist/Verbs/VerbConstants.d.ts +56 -3
  190. package/dist/Verbs/VerbConstants.d.ts.map +1 -1
  191. package/dist/Verbs/VerbConstants.js +40 -3
  192. package/dist/Verbs/VerbConstants.js.map +1 -1
  193. package/dist/Verbs/index.d.ts +1 -0
  194. package/dist/Verbs/index.d.ts.map +1 -1
  195. package/dist/Verbs/index.js +1 -0
  196. package/dist/Verbs/index.js.map +1 -1
  197. package/package.json +4 -4
@@ -0,0 +1,1078 @@
1
+ /*!
2
+ * Copyright (C) Microsoft Corporation. All rights reserved.
3
+ */
4
+ // Generated fixture: real saved SharePoint table metadata (getTableMetadata response) for E2E.
5
+ // eslint-disable
6
+ const tableMetadata = {
7
+ name: 'TestList',
8
+ title: 'TestList',
9
+ 'x-ms-permission': 'read-write',
10
+ 'x-ms-capabilities': {
11
+ sortRestrictions: {
12
+ sortable: true,
13
+ unsortableProperties: [
14
+ 'MultipleLine',
15
+ '{Identifier}',
16
+ '{IsFolder}',
17
+ '{Thumbnail}',
18
+ '{Link}',
19
+ '{Name}',
20
+ '{FilenameWithExtension}',
21
+ '{Path}',
22
+ '{FullPath}',
23
+ '{ModerationStatus}',
24
+ '{ModerationComment}',
25
+ '{ContentType}',
26
+ '{HasAttachments}',
27
+ '{Attachments}',
28
+ '{VersionNumber}',
29
+ '{TriggerWindowStartToken}',
30
+ '{TriggerWindowEndToken}',
31
+ ],
32
+ },
33
+ filterRestrictions: {
34
+ filterable: true,
35
+ nonFilterableProperties: [
36
+ 'MultipleLine',
37
+ 'HyperlinkCol',
38
+ '{Identifier}',
39
+ '{IsFolder}',
40
+ '{Thumbnail}',
41
+ '{Link}',
42
+ '{Name}',
43
+ '{FilenameWithExtension}',
44
+ '{Path}',
45
+ '{FullPath}',
46
+ '{ModerationStatus}',
47
+ '{ModerationComment}',
48
+ '{ContentType}',
49
+ '{HasAttachments}',
50
+ '{Attachments}',
51
+ '{VersionNumber}',
52
+ '{TriggerWindowStartToken}',
53
+ '{TriggerWindowEndToken}',
54
+ ],
55
+ },
56
+ isOnlyServerPagable: true,
57
+ filterFunctionSupport: ['and', 'or', 'eq', 'startswith', 'gt', 'ge', 'lt', 'le', 'ne'],
58
+ serverPagingOptions: ['top', 'skiptoken'],
59
+ odataVersion: 3,
60
+ },
61
+ schema: {
62
+ type: 'array',
63
+ items: {
64
+ type: 'object',
65
+ required: ['Title'],
66
+ properties: {
67
+ ID: {
68
+ title: 'ID',
69
+ description: 'List item id. Use this value for specifying the item to act on in other list related actions.',
70
+ type: 'integer',
71
+ format: 'int64',
72
+ 'x-ms-keyType': 'primary',
73
+ 'x-ms-keyOrder': 1,
74
+ 'x-ms-permission': 'read-only',
75
+ 'x-ms-sort': 'asc,desc',
76
+ 'x-ms-capabilities': {
77
+ filterFunctions: ['eq'],
78
+ },
79
+ },
80
+ Title: {
81
+ title: 'Title',
82
+ type: 'string',
83
+ 'x-ms-permission': 'read-write',
84
+ 'x-ms-sort': 'asc,desc',
85
+ 'x-ms-capabilities': {
86
+ filterFunctions: ['eq', 'startswith'],
87
+ },
88
+ maxLength: 255,
89
+ },
90
+ 'ChoiceCol1#Id': {
91
+ title: 'ChoiceCol1 Id',
92
+ type: 'integer',
93
+ format: 'int64',
94
+ 'x-ms-permission': 'read-only',
95
+ 'x-ms-visibility': 'internal',
96
+ },
97
+ ChoiceCol1: {
98
+ title: 'ChoiceCol1',
99
+ type: 'object',
100
+ 'x-ms-permission': 'read-write',
101
+ 'x-ms-sort': 'asc,desc',
102
+ 'x-ms-capabilities': {
103
+ 'x-ms-sp': {
104
+ IsChoice: true,
105
+ },
106
+ filterFunctions: ['eq'],
107
+ },
108
+ properties: {
109
+ '@odata.type': {
110
+ title: '@odata.type',
111
+ 'x-ms-visibility': 'internal',
112
+ type: 'string',
113
+ 'x-ms-permission': 'read-write',
114
+ },
115
+ Value: {
116
+ title: 'Value',
117
+ type: 'string',
118
+ default: 'Choice 1',
119
+ 'x-ms-dynamic-values': {
120
+ operationId: 'GetEntityValues',
121
+ parameters: {
122
+ dataset: {
123
+ parameter: 'dataset',
124
+ },
125
+ table: {
126
+ parameter: 'table',
127
+ },
128
+ id: '391e32ab-844e-4edc-af68-cc75b54bfc24',
129
+ },
130
+ 'value-path': 'Value',
131
+ 'value-title': 'Value',
132
+ 'value-collection': 'value',
133
+ },
134
+ },
135
+ Id: {
136
+ title: 'Id',
137
+ type: 'integer',
138
+ format: 'int64',
139
+ 'x-ms-visibility': 'internal',
140
+ default: 0,
141
+ 'x-ms-permission': 'read-only',
142
+ },
143
+ },
144
+ 'x-ms-displayFormat': {
145
+ titleProperty: 'Value',
146
+ },
147
+ },
148
+ DateTimeCol: {
149
+ title: 'DateTimeCol',
150
+ type: 'string',
151
+ format: 'date-time',
152
+ 'x-ms-permission': 'read-write',
153
+ 'x-ms-sort': 'asc,desc',
154
+ 'x-ms-capabilities': {
155
+ filterFunctions: ['eq', 'gt', 'ge', 'lt', 'le', 'ne'],
156
+ },
157
+ },
158
+ MultipleLine: {
159
+ title: 'MultipleLine',
160
+ type: 'string',
161
+ 'x-ms-permission': 'read-write',
162
+ 'x-ms-sort': 'none',
163
+ default: 'sampe',
164
+ },
165
+ 'Person#Claims': {
166
+ title: 'Person Claims',
167
+ type: 'string',
168
+ 'x-ms-permission': 'read-only',
169
+ 'x-ms-visibility': 'internal',
170
+ },
171
+ Person: {
172
+ title: 'Person',
173
+ type: 'object',
174
+ 'x-ms-permission': 'read-write',
175
+ 'x-ms-sort': 'asc,desc',
176
+ 'x-ms-capabilities': {
177
+ filterFunctions: ['eq'],
178
+ },
179
+ properties: {
180
+ '@odata.type': {
181
+ title: '@odata.type',
182
+ 'x-ms-visibility': 'internal',
183
+ type: 'string',
184
+ 'x-ms-permission': 'read-write',
185
+ },
186
+ Claims: {
187
+ title: 'Claims',
188
+ type: 'string',
189
+ 'x-ms-dynamic-values': {
190
+ operationId: 'GetEntityValues',
191
+ parameters: {
192
+ dataset: {
193
+ parameter: 'dataset',
194
+ },
195
+ table: {
196
+ parameter: 'table',
197
+ },
198
+ id: '3dc412c0-3eb9-4126-99be-df73a5d38a4f',
199
+ },
200
+ 'value-path': 'Claims',
201
+ 'value-title': 'DisplayName',
202
+ 'value-collection': 'value',
203
+ },
204
+ },
205
+ DisplayName: {
206
+ title: 'DisplayName',
207
+ type: 'string',
208
+ 'x-ms-permission': 'read-only',
209
+ 'x-ms-capabilities': {
210
+ 'x-ms-sp': {
211
+ OdataQueryName: 'Title',
212
+ },
213
+ filterFunctions: ['eq', 'startswith'],
214
+ },
215
+ },
216
+ Email: {
217
+ title: 'Email',
218
+ type: 'string',
219
+ format: 'email',
220
+ 'x-ms-permission': 'read-only',
221
+ 'x-ms-capabilities': {
222
+ 'x-ms-sp': {
223
+ OdataQueryName: 'EMail',
224
+ },
225
+ filterFunctions: ['eq', 'startswith'],
226
+ },
227
+ },
228
+ Picture: {
229
+ title: 'Picture',
230
+ type: 'string',
231
+ format: 'uri',
232
+ 'x-ms-media-kind': 'image',
233
+ 'x-ms-media-default-folder-path': '/sites/AppConnectivity',
234
+ 'x-ms-media-base-url': 'https://capintegration01.sharepoint.com/sites/AppConnectivity',
235
+ 'x-ms-permission': 'read-only',
236
+ },
237
+ Department: {
238
+ title: 'Department',
239
+ type: 'string',
240
+ 'x-ms-permission': 'read-only',
241
+ },
242
+ JobTitle: {
243
+ title: 'JobTitle',
244
+ type: 'string',
245
+ 'x-ms-permission': 'read-only',
246
+ },
247
+ },
248
+ 'x-ms-displayFormat': {
249
+ titleProperty: 'DisplayName',
250
+ subtitleProperty: 'Email',
251
+ thumbnailProperty: 'Picture',
252
+ },
253
+ },
254
+ NumCol: {
255
+ title: 'NumCol',
256
+ type: 'number',
257
+ format: 'double',
258
+ 'x-ms-permission': 'read-write',
259
+ 'x-ms-sort': 'asc,desc',
260
+ 'x-ms-capabilities': {
261
+ filterFunctions: ['eq', 'gt', 'ge', 'lt', 'le', 'ne'],
262
+ },
263
+ maximum: 1.7976931348623157e308,
264
+ minimum: -1.7976931348623157e308,
265
+ },
266
+ YesNoCol: {
267
+ title: 'YesNoCol',
268
+ type: 'boolean',
269
+ 'x-ms-permission': 'read-write',
270
+ 'x-ms-sort': 'asc,desc',
271
+ 'x-ms-capabilities': {
272
+ filterFunctions: ['eq'],
273
+ },
274
+ default: true,
275
+ },
276
+ HyperlinkCol: {
277
+ title: 'HyperlinkCol',
278
+ type: 'string',
279
+ format: 'uri',
280
+ 'x-ms-permission': 'read-write',
281
+ 'x-ms-sort': 'asc,desc',
282
+ },
283
+ CurrencyCol: {
284
+ title: 'CurrencyCol',
285
+ type: 'number',
286
+ format: 'double',
287
+ 'x-ms-permission': 'read-write',
288
+ 'x-ms-sort': 'asc,desc',
289
+ 'x-ms-capabilities': {
290
+ filterFunctions: ['eq', 'gt', 'ge', 'lt', 'le', 'ne'],
291
+ },
292
+ default: 1,
293
+ maximum: 1.7976931348623157e308,
294
+ minimum: -1.7976931348623157e308,
295
+ },
296
+ LocCol: {
297
+ title: 'LocCol',
298
+ type: 'string',
299
+ 'x-ms-permission': 'read-write',
300
+ 'x-ms-sort': 'asc,desc',
301
+ 'x-ms-capabilities': {
302
+ filterFunctions: ['eq', 'startswith'],
303
+ },
304
+ maxLength: 255,
305
+ },
306
+ Street: {
307
+ title: 'LocCol: Street',
308
+ type: 'string',
309
+ 'x-ms-permission': 'read-only',
310
+ 'x-ms-sort': 'asc,desc',
311
+ 'x-ms-capabilities': {
312
+ filterFunctions: ['eq', 'startswith'],
313
+ },
314
+ maxLength: 255,
315
+ },
316
+ City: {
317
+ title: 'LocCol: City',
318
+ type: 'string',
319
+ 'x-ms-permission': 'read-only',
320
+ 'x-ms-sort': 'asc,desc',
321
+ 'x-ms-capabilities': {
322
+ filterFunctions: ['eq', 'startswith'],
323
+ },
324
+ maxLength: 255,
325
+ },
326
+ State: {
327
+ title: 'LocCol: State',
328
+ type: 'string',
329
+ 'x-ms-permission': 'read-only',
330
+ 'x-ms-sort': 'asc,desc',
331
+ 'x-ms-capabilities': {
332
+ filterFunctions: ['eq', 'startswith'],
333
+ },
334
+ maxLength: 255,
335
+ },
336
+ CountryOrRegion: {
337
+ title: 'LocCol: Country/Region',
338
+ type: 'string',
339
+ 'x-ms-permission': 'read-only',
340
+ 'x-ms-sort': 'asc,desc',
341
+ 'x-ms-capabilities': {
342
+ filterFunctions: ['eq', 'startswith'],
343
+ },
344
+ maxLength: 255,
345
+ },
346
+ PostalCode: {
347
+ title: 'LocCol: Postal Code',
348
+ type: 'string',
349
+ 'x-ms-permission': 'read-only',
350
+ 'x-ms-sort': 'asc,desc',
351
+ 'x-ms-capabilities': {
352
+ filterFunctions: ['eq', 'startswith'],
353
+ },
354
+ maxLength: 255,
355
+ },
356
+ GeoLoc: {
357
+ title: 'LocCol: Coordinates',
358
+ type: 'string',
359
+ 'x-ms-permission': 'read-write',
360
+ 'x-ms-sort': 'asc,desc',
361
+ 'x-ms-capabilities': {
362
+ filterFunctions: ['eq', 'startswith'],
363
+ },
364
+ maxLength: 255,
365
+ },
366
+ DispName: {
367
+ title: 'LocCol: Name',
368
+ type: 'string',
369
+ 'x-ms-permission': 'read-only',
370
+ 'x-ms-sort': 'asc,desc',
371
+ 'x-ms-capabilities': {
372
+ filterFunctions: ['eq', 'startswith'],
373
+ },
374
+ maxLength: 255,
375
+ },
376
+ ImageCol: {
377
+ title: 'ImageCol',
378
+ type: 'string',
379
+ 'x-ms-permission': 'read-write',
380
+ 'x-ms-sort': 'asc,desc',
381
+ 'x-ms-capabilities': {
382
+ filterFunctions: ['eq', 'startswith'],
383
+ },
384
+ maxLength: 255,
385
+ },
386
+ field_18: {
387
+ title: 'LookupCol',
388
+ type: 'string',
389
+ 'x-ms-permission': 'read-write',
390
+ 'x-ms-sort': 'asc,desc',
391
+ 'x-ms-capabilities': {
392
+ filterFunctions: ['eq', 'startswith'],
393
+ },
394
+ maxLength: 255,
395
+ },
396
+ ManagedMetadataCol: {
397
+ title: 'ManagedMetadataCol',
398
+ type: 'string',
399
+ 'x-ms-permission': 'read-write',
400
+ 'x-ms-sort': 'asc,desc',
401
+ 'x-ms-capabilities': {
402
+ filterFunctions: ['eq', 'startswith'],
403
+ },
404
+ maxLength: 255,
405
+ },
406
+ String: {
407
+ title: 'String ',
408
+ type: 'string',
409
+ 'x-ms-permission': 'read-write',
410
+ 'x-ms-sort': 'asc,desc',
411
+ 'x-ms-capabilities': {
412
+ filterFunctions: ['eq', 'startswith'],
413
+ },
414
+ maxLength: 255,
415
+ },
416
+ StringNoSpace: {
417
+ title: 'StringNoSpace',
418
+ type: 'string',
419
+ 'x-ms-permission': 'read-write',
420
+ 'x-ms-sort': 'asc,desc',
421
+ 'x-ms-capabilities': {
422
+ filterFunctions: ['eq', 'startswith'],
423
+ },
424
+ maxLength: 255,
425
+ },
426
+ field_22: {
427
+ title: 'Users1',
428
+ type: 'string',
429
+ 'x-ms-permission': 'read-write',
430
+ 'x-ms-sort': 'asc,desc',
431
+ 'x-ms-capabilities': {
432
+ filterFunctions: ['eq', 'startswith'],
433
+ },
434
+ maxLength: 255,
435
+ },
436
+ field_23: {
437
+ title: 'Users1: Title',
438
+ type: 'string',
439
+ 'x-ms-permission': 'read-write',
440
+ 'x-ms-sort': 'asc,desc',
441
+ 'x-ms-capabilities': {
442
+ filterFunctions: ['eq', 'startswith'],
443
+ },
444
+ maxLength: 255,
445
+ },
446
+ OData__ColorTag: {
447
+ title: 'Color Tag',
448
+ type: 'string',
449
+ 'x-ms-permission': 'read-only',
450
+ 'x-ms-sort': 'asc,desc',
451
+ 'x-ms-capabilities': {
452
+ filterFunctions: ['eq', 'startswith'],
453
+ },
454
+ maxLength: 255,
455
+ },
456
+ ComplianceAssetId: {
457
+ title: 'Compliance Asset Id',
458
+ type: 'string',
459
+ 'x-ms-permission': 'read-only',
460
+ 'x-ms-sort': 'asc,desc',
461
+ 'x-ms-capabilities': {
462
+ filterFunctions: ['eq', 'startswith'],
463
+ },
464
+ maxLength: 255,
465
+ },
466
+ Modified: {
467
+ title: 'Modified',
468
+ description: 'When this item was last changed.',
469
+ type: 'string',
470
+ format: 'date-time',
471
+ 'x-ms-permission': 'read-only',
472
+ 'x-ms-sort': 'asc,desc',
473
+ 'x-ms-capabilities': {
474
+ filterFunctions: ['eq', 'gt', 'ge', 'lt', 'le', 'ne'],
475
+ },
476
+ },
477
+ Created: {
478
+ title: 'Created',
479
+ description: 'When this item was created.',
480
+ type: 'string',
481
+ format: 'date-time',
482
+ 'x-ms-permission': 'read-only',
483
+ 'x-ms-sort': 'asc,desc',
484
+ 'x-ms-capabilities': {
485
+ filterFunctions: ['eq', 'gt', 'ge', 'lt', 'le', 'ne'],
486
+ },
487
+ },
488
+ 'Author#Claims': {
489
+ title: 'Created By Claims',
490
+ type: 'string',
491
+ description: 'Internal identifier for the user who created this item.',
492
+ 'x-ms-permission': 'read-only',
493
+ 'x-ms-visibility': 'internal',
494
+ },
495
+ Author: {
496
+ title: 'Created By',
497
+ description: 'The user who created this item.',
498
+ type: 'object',
499
+ 'x-ms-permission': 'read-only',
500
+ 'x-ms-sort': 'asc,desc',
501
+ 'x-ms-capabilities': {
502
+ filterFunctions: ['eq'],
503
+ },
504
+ properties: {
505
+ '@odata.type': {
506
+ title: '@odata.type',
507
+ 'x-ms-visibility': 'internal',
508
+ type: 'string',
509
+ 'x-ms-permission': 'read-only',
510
+ },
511
+ Claims: {
512
+ title: 'Claims',
513
+ type: 'string',
514
+ description: 'Internal identifier for the user who created this item.',
515
+ 'x-ms-permission': 'read-only',
516
+ 'x-ms-dynamic-values': {
517
+ operationId: 'GetEntityValues',
518
+ parameters: {
519
+ dataset: {
520
+ parameter: 'dataset',
521
+ },
522
+ table: {
523
+ parameter: 'table',
524
+ },
525
+ id: '1df5e554-ec7e-46a6-901d-d85a3881cb18',
526
+ },
527
+ 'value-path': 'Claims',
528
+ 'value-title': 'DisplayName',
529
+ 'value-collection': 'value',
530
+ },
531
+ },
532
+ DisplayName: {
533
+ title: 'DisplayName',
534
+ type: 'string',
535
+ description: 'The name of the user who created this item.',
536
+ 'x-ms-permission': 'read-only',
537
+ 'x-ms-capabilities': {
538
+ 'x-ms-sp': {
539
+ OdataQueryName: 'Title',
540
+ },
541
+ filterFunctions: ['eq', 'startswith'],
542
+ },
543
+ },
544
+ Email: {
545
+ title: 'Email',
546
+ type: 'string',
547
+ description: 'Email address of the user who created this item.',
548
+ format: 'email',
549
+ 'x-ms-permission': 'read-only',
550
+ 'x-ms-capabilities': {
551
+ 'x-ms-sp': {
552
+ OdataQueryName: 'EMail',
553
+ },
554
+ filterFunctions: ['eq', 'startswith'],
555
+ },
556
+ },
557
+ Picture: {
558
+ title: 'Picture',
559
+ type: 'string',
560
+ description: 'Link to a picture of the user who created this item.',
561
+ format: 'uri',
562
+ 'x-ms-media-kind': 'image',
563
+ 'x-ms-media-default-folder-path': '/sites/AppConnectivity',
564
+ 'x-ms-media-base-url': 'https://capintegration01.sharepoint.com/sites/AppConnectivity',
565
+ 'x-ms-permission': 'read-only',
566
+ },
567
+ Department: {
568
+ title: 'Department',
569
+ type: 'string',
570
+ description: 'Department name of the user who created this item.',
571
+ 'x-ms-permission': 'read-only',
572
+ },
573
+ JobTitle: {
574
+ title: 'JobTitle',
575
+ type: 'string',
576
+ description: 'Job title of the user who created this item.',
577
+ 'x-ms-permission': 'read-only',
578
+ },
579
+ },
580
+ 'x-ms-displayFormat': {
581
+ titleProperty: 'DisplayName',
582
+ subtitleProperty: 'Email',
583
+ thumbnailProperty: 'Picture',
584
+ },
585
+ },
586
+ 'Editor#Claims': {
587
+ title: 'Modified By Claims',
588
+ type: 'string',
589
+ description: 'Internal identifier for the user who last changed this item.',
590
+ 'x-ms-permission': 'read-only',
591
+ 'x-ms-visibility': 'internal',
592
+ },
593
+ Editor: {
594
+ title: 'Modified By',
595
+ description: 'The user who last changed this item.',
596
+ type: 'object',
597
+ 'x-ms-permission': 'read-only',
598
+ 'x-ms-sort': 'asc,desc',
599
+ 'x-ms-capabilities': {
600
+ filterFunctions: ['eq'],
601
+ },
602
+ properties: {
603
+ '@odata.type': {
604
+ title: '@odata.type',
605
+ 'x-ms-visibility': 'internal',
606
+ type: 'string',
607
+ 'x-ms-permission': 'read-only',
608
+ },
609
+ Claims: {
610
+ title: 'Claims',
611
+ type: 'string',
612
+ description: 'Internal identifier for the user who last changed this item.',
613
+ 'x-ms-permission': 'read-only',
614
+ 'x-ms-dynamic-values': {
615
+ operationId: 'GetEntityValues',
616
+ parameters: {
617
+ dataset: {
618
+ parameter: 'dataset',
619
+ },
620
+ table: {
621
+ parameter: 'table',
622
+ },
623
+ id: 'd31655d1-1d5b-4511-95a1-7a09e9b75bf2',
624
+ },
625
+ 'value-path': 'Claims',
626
+ 'value-title': 'DisplayName',
627
+ 'value-collection': 'value',
628
+ },
629
+ },
630
+ DisplayName: {
631
+ title: 'DisplayName',
632
+ type: 'string',
633
+ description: 'The name of the user who last changed this item.',
634
+ 'x-ms-permission': 'read-only',
635
+ 'x-ms-capabilities': {
636
+ 'x-ms-sp': {
637
+ OdataQueryName: 'Title',
638
+ },
639
+ filterFunctions: ['eq', 'startswith'],
640
+ },
641
+ },
642
+ Email: {
643
+ title: 'Email',
644
+ type: 'string',
645
+ description: 'Email address of the user who last changed this item.',
646
+ format: 'email',
647
+ 'x-ms-permission': 'read-only',
648
+ 'x-ms-capabilities': {
649
+ 'x-ms-sp': {
650
+ OdataQueryName: 'EMail',
651
+ },
652
+ filterFunctions: ['eq', 'startswith'],
653
+ },
654
+ },
655
+ Picture: {
656
+ title: 'Picture',
657
+ type: 'string',
658
+ description: 'Link to a picture of the user who last changed this item.',
659
+ format: 'uri',
660
+ 'x-ms-media-kind': 'image',
661
+ 'x-ms-media-default-folder-path': '/sites/AppConnectivity',
662
+ 'x-ms-media-base-url': 'https://capintegration01.sharepoint.com/sites/AppConnectivity',
663
+ 'x-ms-permission': 'read-only',
664
+ },
665
+ Department: {
666
+ title: 'Department',
667
+ type: 'string',
668
+ description: 'Department name of the user who last changed this item.',
669
+ 'x-ms-permission': 'read-only',
670
+ },
671
+ JobTitle: {
672
+ title: 'JobTitle',
673
+ type: 'string',
674
+ description: 'Job title of the user who last changed this item.',
675
+ 'x-ms-permission': 'read-only',
676
+ },
677
+ },
678
+ 'x-ms-displayFormat': {
679
+ titleProperty: 'DisplayName',
680
+ subtitleProperty: 'Email',
681
+ thumbnailProperty: 'Picture',
682
+ },
683
+ },
684
+ '{Identifier}': {
685
+ title: 'Identifier',
686
+ description: 'Value that can be used in file related actions for selecting a file.',
687
+ type: 'string',
688
+ 'x-ms-permission': 'read-only',
689
+ 'x-ms-sort': 'none',
690
+ },
691
+ '{IsFolder}': {
692
+ title: 'IsFolder',
693
+ description: 'True when the item is a folder, false otherwise.',
694
+ type: 'boolean',
695
+ 'x-ms-permission': 'read-only',
696
+ 'x-ms-sort': 'none',
697
+ },
698
+ '{Thumbnail}': {
699
+ title: 'Thumbnail',
700
+ description: 'URL to the thumbnails of the item in 3 different sizes, if available.',
701
+ type: 'object',
702
+ 'x-ms-permission': 'read-only',
703
+ 'x-ms-sort': 'none',
704
+ properties: {
705
+ '@odata.type': {
706
+ title: '@odata.type',
707
+ 'x-ms-visibility': 'internal',
708
+ type: 'string',
709
+ 'x-ms-permission': 'read-only',
710
+ },
711
+ Small: {
712
+ title: 'Small',
713
+ type: 'string',
714
+ description: 'URL to the small, highly compressed size thumbnail of the item, if available.',
715
+ 'x-ms-permission': 'read-only',
716
+ },
717
+ Medium: {
718
+ title: 'Medium',
719
+ type: 'string',
720
+ description: 'URL to the standard size thumbnail of the item, if available.',
721
+ 'x-ms-permission': 'read-only',
722
+ },
723
+ Large: {
724
+ title: 'Large',
725
+ type: 'string',
726
+ description: 'URL to the largest size thumbnail of the item, if available.',
727
+ 'x-ms-permission': 'read-only',
728
+ },
729
+ },
730
+ },
731
+ '{Link}': {
732
+ title: 'Link to item',
733
+ description: 'Link that can be used to get to the file or list item. Only people with permissions to the item will be able to open the link.',
734
+ type: 'string',
735
+ 'x-ms-permission': 'read-only',
736
+ 'x-ms-sort': 'none',
737
+ },
738
+ '{Name}': {
739
+ title: 'Name',
740
+ description: 'File name of the item in document libraries, display name of the item in lists.',
741
+ type: 'string',
742
+ 'x-ms-permission': 'read-only',
743
+ 'x-ms-sort': 'none',
744
+ },
745
+ '{FilenameWithExtension}': {
746
+ title: 'File name with extension',
747
+ description: 'For libraries, returns file name including extension. For lists, returns the title property.',
748
+ type: 'string',
749
+ 'x-ms-permission': 'read-only',
750
+ 'x-ms-sort': 'none',
751
+ },
752
+ '{Path}': {
753
+ title: 'Folder path',
754
+ description: 'Path to the folder the item is in, relative to the site address.',
755
+ type: 'string',
756
+ 'x-ms-permission': 'read-only',
757
+ 'x-ms-sort': 'none',
758
+ },
759
+ '{FullPath}': {
760
+ title: 'Full Path',
761
+ description: 'Full path of an item or a folder or a file',
762
+ type: 'string',
763
+ 'x-ms-permission': 'read-only',
764
+ 'x-ms-sort': 'none',
765
+ },
766
+ '{ModerationStatus}': {
767
+ title: 'Content approval status',
768
+ description: 'The content approval status. It can be one of the following: Draft, Pending, Approved, or Rejected',
769
+ type: 'string',
770
+ 'x-ms-permission': 'read-only',
771
+ 'x-ms-sort': 'none',
772
+ },
773
+ '{ModerationComment}': {
774
+ title: 'Comments associated with the content approval of this list item',
775
+ description: 'The comments associated with moderation of the list item.',
776
+ type: 'string',
777
+ 'x-ms-permission': 'read-only',
778
+ 'x-ms-sort': 'none',
779
+ },
780
+ '{ContentType}#Id': {
781
+ title: 'Content type Id',
782
+ type: 'string',
783
+ 'x-ms-permission': 'read-only',
784
+ 'x-ms-visibility': 'internal',
785
+ },
786
+ '{ContentType}': {
787
+ title: 'Content type',
788
+ description: 'Name of the Content type of the item.',
789
+ type: 'object',
790
+ 'x-ms-permission': 'read-write',
791
+ 'x-ms-sort': 'none',
792
+ properties: {
793
+ '@odata.type': {
794
+ title: '@odata.type',
795
+ 'x-ms-visibility': 'internal',
796
+ type: 'string',
797
+ 'x-ms-permission': 'read-write',
798
+ },
799
+ Id: {
800
+ title: 'Id',
801
+ type: 'string',
802
+ 'x-ms-dynamic-values': {
803
+ operationId: 'GetEntityValues',
804
+ parameters: {
805
+ dataset: {
806
+ parameter: 'dataset',
807
+ },
808
+ table: {
809
+ parameter: 'table',
810
+ },
811
+ id: '4651e8f2-38c9-4ad0-8def-41f743f76f30',
812
+ },
813
+ 'value-path': 'Id',
814
+ 'value-title': 'Name',
815
+ 'value-collection': 'value',
816
+ },
817
+ },
818
+ Name: {
819
+ title: 'Name',
820
+ type: 'string',
821
+ 'x-ms-permission': 'read-only',
822
+ },
823
+ },
824
+ 'x-ms-displayFormat': {
825
+ titleProperty: 'Name',
826
+ },
827
+ },
828
+ '{HasAttachments}': {
829
+ title: 'Has attachments',
830
+ description: 'Indicates the presence of attachments in the item.',
831
+ type: 'boolean',
832
+ 'x-ms-permission': 'read-only',
833
+ 'x-ms-sort': 'none',
834
+ },
835
+ '{Attachments}@odata.type': {
836
+ title: '{Attachments}',
837
+ type: 'string',
838
+ 'x-ms-visibility': 'internal',
839
+ 'x-ms-permission': 'read-write',
840
+ },
841
+ '{Attachments}': {
842
+ title: 'Attachments',
843
+ description: 'Never returns any data. Use Attachment endpoints to access item attachments.',
844
+ 'x-ms-permission': 'read-write',
845
+ targetEntity: 'attachments',
846
+ format: 'x-ms-containedMediaEntity',
847
+ 'x-ms-visibility': 'internal',
848
+ type: 'array',
849
+ items: {
850
+ type: 'object',
851
+ format: 'x-ms-mediaEntity',
852
+ 'x-ms-sort': 'none',
853
+ properties: {
854
+ '@odata.type': {
855
+ title: '@odata.type',
856
+ 'x-ms-visibility': 'internal',
857
+ type: 'string',
858
+ 'x-ms-permission': 'read-write',
859
+ },
860
+ Id: {
861
+ title: 'Id',
862
+ type: 'string',
863
+ 'x-ms-keyType': 'primary',
864
+ 'x-ms-keyOrder': 1,
865
+ 'x-ms-permission': 'read-only',
866
+ },
867
+ AbsoluteUri: {
868
+ title: 'AbsoluteUri',
869
+ type: 'string',
870
+ format: 'uri',
871
+ 'x-ms-permission': 'read-only',
872
+ },
873
+ DisplayName: {
874
+ title: 'DisplayName',
875
+ type: 'string',
876
+ 'x-ms-permission': 'read-only',
877
+ },
878
+ },
879
+ },
880
+ '@odata.type': '#Collection(Microsoft.Azure.Connectors.SharePoint.SPListItemAttachment)',
881
+ },
882
+ '{VersionNumber}': {
883
+ title: 'Version number',
884
+ description: 'The version number of the file or the list item.',
885
+ type: 'string',
886
+ 'x-ms-permission': 'read-only',
887
+ 'x-ms-sort': 'none',
888
+ },
889
+ '{TriggerWindowStartToken}': {
890
+ title: 'Trigger Window Start Token',
891
+ description: 'A token expressing the time of the last flow check. Use this if you want to check if one or more columns were modified since the last flow check.',
892
+ type: 'string',
893
+ 'x-ms-permission': 'read-only',
894
+ 'x-ms-sort': 'none',
895
+ },
896
+ '{TriggerWindowEndToken}': {
897
+ title: 'Trigger Window End Token',
898
+ description: 'A token expressing the time of the current flow check. Use this if you want to check if one or more columns were modified since the last flow check.',
899
+ type: 'string',
900
+ 'x-ms-permission': 'read-only',
901
+ 'x-ms-sort': 'none',
902
+ },
903
+ },
904
+ 'x-ms-relationships': {
905
+ ChoiceCol1: {
906
+ targetEntity: 'ChoiceCol1',
907
+ referentialConstraints: {
908
+ 'ChoiceCol1#Id': {
909
+ referencedProperty: 'Id',
910
+ },
911
+ },
912
+ },
913
+ Person: {
914
+ targetEntity: 'Person',
915
+ referentialConstraints: {
916
+ 'Person#Claims': {
917
+ referencedProperty: 'Claims',
918
+ },
919
+ },
920
+ },
921
+ Author: {
922
+ targetEntity: 'Author',
923
+ referentialConstraints: {
924
+ 'Author#Claims': {
925
+ referencedProperty: 'Claims',
926
+ },
927
+ },
928
+ },
929
+ Editor: {
930
+ targetEntity: 'Editor',
931
+ referentialConstraints: {
932
+ 'Editor#Claims': {
933
+ referencedProperty: 'Claims',
934
+ },
935
+ },
936
+ },
937
+ '{ContentType}': {
938
+ targetEntity: '4651e8f2-38c9-4ad0-8def-41f743f76f30',
939
+ referentialConstraints: {
940
+ '{ContentType}#Id': {
941
+ referencedProperty: 'Id',
942
+ },
943
+ },
944
+ },
945
+ },
946
+ 'x-ms-displayFormat': {
947
+ propertiesDisplayOrder: [
948
+ 'ChoiceCol1',
949
+ 'DateTimeCol',
950
+ 'MultipleLine',
951
+ 'Person',
952
+ 'NumCol',
953
+ 'YesNoCol',
954
+ 'HyperlinkCol',
955
+ 'CurrencyCol',
956
+ 'LocCol',
957
+ 'Street',
958
+ 'City',
959
+ 'State',
960
+ 'CountryOrRegion',
961
+ 'PostalCode',
962
+ 'GeoLoc',
963
+ 'DispName',
964
+ 'ImageCol',
965
+ 'field_18',
966
+ 'ManagedMetadataCol',
967
+ 'String',
968
+ 'StringNoSpace',
969
+ 'field_22',
970
+ 'field_23',
971
+ '{Attachments}',
972
+ ],
973
+ propertiesCompactDisplayOrder: [
974
+ 'Title',
975
+ 'ChoiceCol1',
976
+ 'DateTimeCol',
977
+ 'MultipleLine',
978
+ 'Person',
979
+ 'NumCol',
980
+ 'YesNoCol',
981
+ 'HyperlinkCol',
982
+ 'CurrencyCol',
983
+ 'LocCol',
984
+ 'Street',
985
+ 'City',
986
+ 'State',
987
+ 'CountryOrRegion',
988
+ 'PostalCode',
989
+ 'GeoLoc',
990
+ 'DispName',
991
+ 'ImageCol',
992
+ 'field_18',
993
+ 'ManagedMetadataCol',
994
+ 'String',
995
+ 'StringNoSpace',
996
+ 'field_22',
997
+ 'field_23',
998
+ ],
999
+ propertiesTabularDisplayOrder: [
1000
+ 'Title',
1001
+ 'ChoiceCol1',
1002
+ 'DateTimeCol',
1003
+ 'MultipleLine',
1004
+ 'Person',
1005
+ 'NumCol',
1006
+ 'YesNoCol',
1007
+ 'HyperlinkCol',
1008
+ 'CurrencyCol',
1009
+ 'LocCol',
1010
+ 'Street',
1011
+ 'City',
1012
+ 'State',
1013
+ 'CountryOrRegion',
1014
+ 'PostalCode',
1015
+ 'GeoLoc',
1016
+ 'DispName',
1017
+ 'ImageCol',
1018
+ 'field_18',
1019
+ 'ManagedMetadataCol',
1020
+ 'String',
1021
+ 'StringNoSpace',
1022
+ 'field_22',
1023
+ 'field_23',
1024
+ ],
1025
+ },
1026
+ },
1027
+ },
1028
+ referencedEntities: {
1029
+ ChoiceCol1: {
1030
+ lookupEndpoint: {
1031
+ path: '/tables/9fb37ea9-b57f-4c7d-8fa8-571f9ef50892/entities/ChoiceCol1',
1032
+ capabilities: {
1033
+ searchable: true,
1034
+ requiresSearch: false,
1035
+ },
1036
+ },
1037
+ },
1038
+ Person: {
1039
+ lookupEndpoint: {
1040
+ path: '/tables/9fb37ea9-b57f-4c7d-8fa8-571f9ef50892/entities/Person',
1041
+ capabilities: {
1042
+ searchable: true,
1043
+ requiresSearch: false,
1044
+ },
1045
+ },
1046
+ },
1047
+ Author: {
1048
+ lookupEndpoint: {
1049
+ path: '/tables/9fb37ea9-b57f-4c7d-8fa8-571f9ef50892/entities/Author',
1050
+ capabilities: {
1051
+ searchable: true,
1052
+ requiresSearch: false,
1053
+ },
1054
+ },
1055
+ },
1056
+ Editor: {
1057
+ lookupEndpoint: {
1058
+ path: '/tables/9fb37ea9-b57f-4c7d-8fa8-571f9ef50892/entities/Editor',
1059
+ capabilities: {
1060
+ searchable: true,
1061
+ requiresSearch: false,
1062
+ },
1063
+ },
1064
+ },
1065
+ '4651e8f2-38c9-4ad0-8def-41f743f76f30': {
1066
+ lookupEndpoint: {
1067
+ path: '/tables/9fb37ea9-b57f-4c7d-8fa8-571f9ef50892/entities/%257bContentType%257d',
1068
+ capabilities: {
1069
+ searchable: true,
1070
+ requiresSearch: false,
1071
+ },
1072
+ },
1073
+ },
1074
+ },
1075
+ webUrl: 'https://capintegration01.sharepoint.com/sites/AppConnectivity/Lists/TestList/AllItems.aspx',
1076
+ };
1077
+ export default tableMetadata;
1078
+ //# sourceMappingURL=sharepointTestListMetadata.js.map