@carbonorm/carbonnode 2.0.33 → 3.0.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.
- package/dist/api/carbonSqlExecutor.d.ts +17 -0
- package/dist/api/interfaces/ormInterfaces.d.ts +22 -1
- package/dist/api/rest/Blog_Categories.d.ts +37 -0
- package/dist/api/rest/Blog_Categories.test.d.ts +11 -0
- package/dist/api/rest/Blog_Images.d.ts +37 -0
- package/dist/api/rest/Blog_Images.test.d.ts +15 -0
- package/dist/api/rest/Blog_Post_Categories.d.ts +37 -0
- package/dist/api/rest/Blog_Post_Categories.test.d.ts +13 -0
- package/dist/api/rest/Blog_Post_Tags.d.ts +37 -0
- package/dist/api/rest/Blog_Post_Tags.test.d.ts +13 -0
- package/dist/api/rest/Blog_Posts.d.ts +37 -0
- package/dist/api/rest/Blog_Posts.test.d.ts +21 -0
- package/dist/api/rest/Blog_Tags.d.ts +37 -0
- package/dist/api/rest/Blog_Tags.test.d.ts +11 -0
- package/dist/api/rest/C6.d.ts +1000 -0
- package/dist/api/rest/Cache.d.ts +37 -0
- package/dist/api/rest/Cache.test.d.ts +12 -0
- package/dist/api/rest/Cities.d.ts +37 -0
- package/dist/api/rest/Cities.test.d.ts +17 -0
- package/dist/api/rest/Counties.d.ts +37 -0
- package/dist/api/rest/Counties.test.d.ts +18 -0
- package/dist/api/rest/Countries.d.ts +37 -0
- package/dist/api/rest/Countries.test.d.ts +24 -0
- package/dist/api/rest/Geometries.d.ts +37 -0
- package/dist/api/rest/Geometries.test.d.ts +16 -0
- package/dist/api/rest/Images.d.ts +37 -0
- package/dist/api/rest/Images.test.d.ts +16 -0
- package/dist/api/rest/Land_Section_Info.d.ts +37 -0
- package/dist/api/rest/Land_Section_Info.test.d.ts +15 -0
- package/dist/api/rest/Neighborhoods.d.ts +37 -0
- package/dist/api/rest/Neighborhoods.test.d.ts +12 -0
- package/dist/api/rest/Parcel_Building_Details.d.ts +37 -0
- package/dist/api/rest/Parcel_Building_Details.test.d.ts +40 -0
- package/dist/api/rest/Parcel_Neighborhoods.d.ts +37 -0
- package/dist/api/rest/Parcel_Neighborhoods.test.d.ts +15 -0
- package/dist/api/rest/Parcel_Owners.d.ts +37 -0
- package/dist/api/rest/Parcel_Owners.test.d.ts +23 -0
- package/dist/api/rest/Parcel_Sales.d.ts +37 -0
- package/dist/api/rest/Parcel_Sales.test.d.ts +19 -0
- package/dist/api/rest/Parcel_Tax_History.d.ts +37 -0
- package/dist/api/rest/Parcel_Tax_History.test.d.ts +24 -0
- package/dist/api/rest/Parcels.d.ts +37 -0
- package/dist/api/rest/Parcels.test.d.ts +42 -0
- package/dist/api/rest/Payment_Charge_Logs.d.ts +37 -0
- package/dist/api/rest/Payment_Charge_Logs.test.d.ts +17 -0
- package/dist/api/rest/Payment_Subscriptions.d.ts +37 -0
- package/dist/api/rest/Payment_Subscriptions.test.d.ts +20 -0
- package/dist/api/rest/Property_Units.d.ts +37 -0
- package/dist/api/rest/Property_Units.test.d.ts +55 -0
- package/dist/api/rest/Sources.d.ts +37 -0
- package/dist/api/rest/Sources.test.d.ts +17 -0
- package/dist/api/rest/States.d.ts +37 -0
- package/dist/api/rest/States.test.d.ts +20 -0
- package/dist/api/rest/Tax_Districts.d.ts +37 -0
- package/dist/api/rest/Tax_Districts.test.d.ts +12 -0
- package/dist/api/rest/Users.d.ts +37 -0
- package/dist/api/rest/Users.test.d.ts +14 -0
- package/dist/api/rest/Valuation_Reports.d.ts +37 -0
- package/dist/api/rest/Valuation_Reports.test.d.ts +36 -0
- package/dist/api/rest/Zip_Codes.d.ts +37 -0
- package/dist/api/rest/Zip_Codes.test.d.ts +15 -0
- package/dist/api/restRequest.d.ts +44 -21
- package/dist/index.cjs.js +903 -558
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.esm.js +899 -557
- package/dist/index.esm.js.map +1 -1
- package/dist/variables/getEnvVar.d.ts +1 -0
- package/dist/variables/isNode.d.ts +2 -0
- package/dist/variables/isTest.d.ts +1 -1
- package/dist/variables/toastOptions.d.ts +2 -2
- package/package.json +23 -12
- package/scripts/assets/handlebars/C6.ts.handlebars +5 -1
- package/scripts/generateRestBindings.cjs +89 -23
- package/scripts/generateRestBindings.ts +100 -27
- package/src/api/carbonSqlExecutor.ts +279 -0
- package/src/api/interfaces/ormInterfaces.ts +9 -1
- package/src/api/restRequest.ts +164 -19
- package/src/index.ts +4 -0
- package/src/variables/getEnvVar.ts +15 -0
- package/src/variables/isLocal.ts +3 -6
- package/src/variables/isNode.ts +3 -0
- package/src/variables/isTest.ts +4 -16
- package/src/variables/isVerbose.ts +2 -6
|
@@ -0,0 +1,1000 @@
|
|
|
1
|
+
import { iC6Object, iC6RestfulModel, tC6Tables } from "@carbonorm/carbonnode";
|
|
2
|
+
import * as GeoJSON from 'geojson';
|
|
3
|
+
export declare const RestTablePrefix = "carbon_";
|
|
4
|
+
export type RestTableNames = 'blog_categories' | 'blog_images' | 'blog_post_categories' | 'blog_post_tags' | 'blog_posts' | 'blog_tags' | 'cache' | 'cities' | 'counties' | 'countries' | 'geometries' | 'images' | 'land_section_info' | 'neighborhoods' | 'parcel_building_details' | 'parcel_neighborhoods' | 'parcel_owners' | 'parcel_sales' | 'parcel_tax_history' | 'parcels' | 'payment_charge_logs' | 'payment_subscriptions' | 'property_units' | 'sources' | 'states' | 'tax_districts' | 'users' | 'valuation_reports' | 'zip_codes';
|
|
5
|
+
export type RestShortTableNames = 'blog_categories' | 'blog_images' | 'blog_post_categories' | 'blog_post_tags' | 'blog_posts' | 'blog_tags' | 'cache' | 'cities' | 'counties' | 'countries' | 'geometries' | 'images' | 'land_section_info' | 'neighborhoods' | 'parcel_building_details' | 'parcel_neighborhoods' | 'parcel_owners' | 'parcel_sales' | 'parcel_tax_history' | 'parcels' | 'payment_charge_logs' | 'payment_subscriptions' | 'property_units' | 'sources' | 'states' | 'tax_districts' | 'users' | 'valuation_reports' | 'zip_codes';
|
|
6
|
+
export interface iBlog_Categories {
|
|
7
|
+
'category_id'?: Buffer | string;
|
|
8
|
+
'name'?: string | null;
|
|
9
|
+
}
|
|
10
|
+
interface iDefineBlog_Categories {
|
|
11
|
+
'CATEGORY_ID': string;
|
|
12
|
+
'NAME': string;
|
|
13
|
+
}
|
|
14
|
+
export declare const blog_categories: iC6RestfulModel<RestTableNames> & iDefineBlog_Categories;
|
|
15
|
+
export interface iBlog_Images {
|
|
16
|
+
'image_id'?: Buffer | string;
|
|
17
|
+
'post_id'?: Buffer | string;
|
|
18
|
+
'label'?: string | null;
|
|
19
|
+
'data_uri'?: string | null;
|
|
20
|
+
'uploaded_at'?: Date | string | null;
|
|
21
|
+
}
|
|
22
|
+
interface iDefineBlog_Images {
|
|
23
|
+
'IMAGE_ID': string;
|
|
24
|
+
'POST_ID': string;
|
|
25
|
+
'LABEL': string;
|
|
26
|
+
'DATA_URI': string;
|
|
27
|
+
'UPLOADED_AT': string;
|
|
28
|
+
}
|
|
29
|
+
export declare const blog_images: iC6RestfulModel<RestTableNames> & iDefineBlog_Images;
|
|
30
|
+
export interface iBlog_Post_Categories {
|
|
31
|
+
'post_id'?: Buffer | string;
|
|
32
|
+
'category_id'?: Buffer | string;
|
|
33
|
+
}
|
|
34
|
+
interface iDefineBlog_Post_Categories {
|
|
35
|
+
'POST_ID': string;
|
|
36
|
+
'CATEGORY_ID': string;
|
|
37
|
+
}
|
|
38
|
+
export declare const blog_post_categories: iC6RestfulModel<RestTableNames> & iDefineBlog_Post_Categories;
|
|
39
|
+
export interface iBlog_Post_Tags {
|
|
40
|
+
'post_id'?: Buffer | string;
|
|
41
|
+
'tag_id'?: Buffer | string;
|
|
42
|
+
}
|
|
43
|
+
interface iDefineBlog_Post_Tags {
|
|
44
|
+
'POST_ID': string;
|
|
45
|
+
'TAG_ID': string;
|
|
46
|
+
}
|
|
47
|
+
export declare const blog_post_tags: iC6RestfulModel<RestTableNames> & iDefineBlog_Post_Tags;
|
|
48
|
+
export interface iBlog_Posts {
|
|
49
|
+
'post_id'?: Buffer | string;
|
|
50
|
+
'author_id'?: Buffer | string;
|
|
51
|
+
'title'?: string | null;
|
|
52
|
+
'slug'?: string | null;
|
|
53
|
+
'excerpt'?: string | null;
|
|
54
|
+
'content'?: string | null;
|
|
55
|
+
'image_uri'?: string | null;
|
|
56
|
+
'status'?: 'draft' | 'published' | 'archived' | null;
|
|
57
|
+
'published_at'?: Date | string | null;
|
|
58
|
+
'created_at'?: Date | string | null;
|
|
59
|
+
'updated_at'?: Date | string | null;
|
|
60
|
+
}
|
|
61
|
+
interface iDefineBlog_Posts {
|
|
62
|
+
'POST_ID': string;
|
|
63
|
+
'AUTHOR_ID': string;
|
|
64
|
+
'TITLE': string;
|
|
65
|
+
'SLUG': string;
|
|
66
|
+
'EXCERPT': string;
|
|
67
|
+
'CONTENT': string;
|
|
68
|
+
'IMAGE_URI': string;
|
|
69
|
+
'STATUS': string;
|
|
70
|
+
'PUBLISHED_AT': string;
|
|
71
|
+
'CREATED_AT': string;
|
|
72
|
+
'UPDATED_AT': string;
|
|
73
|
+
}
|
|
74
|
+
export declare const blog_posts: iC6RestfulModel<RestTableNames> & iDefineBlog_Posts;
|
|
75
|
+
export interface iBlog_Tags {
|
|
76
|
+
'tag_id'?: Buffer | string;
|
|
77
|
+
'name'?: string | null;
|
|
78
|
+
}
|
|
79
|
+
interface iDefineBlog_Tags {
|
|
80
|
+
'TAG_ID': string;
|
|
81
|
+
'NAME': string;
|
|
82
|
+
}
|
|
83
|
+
export declare const blog_tags: iC6RestfulModel<RestTableNames> & iDefineBlog_Tags;
|
|
84
|
+
export interface iCache {
|
|
85
|
+
'id'?: string | null;
|
|
86
|
+
'value'?: string | null;
|
|
87
|
+
'ttl'?: number;
|
|
88
|
+
'created_at'?: Date | string | null;
|
|
89
|
+
}
|
|
90
|
+
interface iDefineCache {
|
|
91
|
+
'ID': string;
|
|
92
|
+
'VALUE': string;
|
|
93
|
+
'TTL': string;
|
|
94
|
+
'CREATED_AT': string;
|
|
95
|
+
}
|
|
96
|
+
export declare const cache: iC6RestfulModel<RestTableNames> & iDefineCache;
|
|
97
|
+
export interface iCities {
|
|
98
|
+
'city_id'?: Buffer | string;
|
|
99
|
+
'name'?: string | null;
|
|
100
|
+
'state_id'?: Buffer | string;
|
|
101
|
+
'geometry_id'?: Buffer | string | null;
|
|
102
|
+
'created_at'?: Date | string | null;
|
|
103
|
+
}
|
|
104
|
+
interface iDefineCities {
|
|
105
|
+
'CITY_ID': string;
|
|
106
|
+
'NAME': string;
|
|
107
|
+
'STATE_ID': string;
|
|
108
|
+
'GEOMETRY_ID': string;
|
|
109
|
+
'CREATED_AT': string;
|
|
110
|
+
}
|
|
111
|
+
export declare const cities: iC6RestfulModel<RestTableNames> & iDefineCities;
|
|
112
|
+
export interface iCounties {
|
|
113
|
+
'county_id'?: Buffer | string;
|
|
114
|
+
'state_id'?: Buffer | string;
|
|
115
|
+
'county_fips'?: string | null;
|
|
116
|
+
'name'?: string | null;
|
|
117
|
+
'geometry_id'?: Buffer | string | null;
|
|
118
|
+
'created_at'?: Date | string | null;
|
|
119
|
+
}
|
|
120
|
+
interface iDefineCounties {
|
|
121
|
+
'COUNTY_ID': string;
|
|
122
|
+
'STATE_ID': string;
|
|
123
|
+
'COUNTY_FIPS': string;
|
|
124
|
+
'NAME': string;
|
|
125
|
+
'GEOMETRY_ID': string;
|
|
126
|
+
'CREATED_AT': string;
|
|
127
|
+
}
|
|
128
|
+
export declare const counties: iC6RestfulModel<RestTableNames> & iDefineCounties;
|
|
129
|
+
export interface iCountries {
|
|
130
|
+
'country_code'?: string | null;
|
|
131
|
+
'name'?: string | null;
|
|
132
|
+
'alpha_3_code'?: string | null;
|
|
133
|
+
'numeric_code'?: string | null;
|
|
134
|
+
'official_name'?: string | null;
|
|
135
|
+
'common_name'?: string | null;
|
|
136
|
+
'cca2'?: string | null;
|
|
137
|
+
'cca3'?: string | null;
|
|
138
|
+
'region'?: string | null;
|
|
139
|
+
'subregion'?: string | null;
|
|
140
|
+
'latitude'?: number | null;
|
|
141
|
+
'longitude'?: number | null;
|
|
142
|
+
'geometry_id'?: Buffer | string | null;
|
|
143
|
+
'created_at'?: Date | string | null;
|
|
144
|
+
}
|
|
145
|
+
interface iDefineCountries {
|
|
146
|
+
'COUNTRY_CODE': string;
|
|
147
|
+
'NAME': string;
|
|
148
|
+
'ALPHA_3_CODE': string;
|
|
149
|
+
'NUMERIC_CODE': string;
|
|
150
|
+
'OFFICIAL_NAME': string;
|
|
151
|
+
'COMMON_NAME': string;
|
|
152
|
+
'CCA2': string;
|
|
153
|
+
'CCA3': string;
|
|
154
|
+
'REGION': string;
|
|
155
|
+
'SUBREGION': string;
|
|
156
|
+
'LATITUDE': string;
|
|
157
|
+
'LONGITUDE': string;
|
|
158
|
+
'GEOMETRY_ID': string;
|
|
159
|
+
'CREATED_AT': string;
|
|
160
|
+
}
|
|
161
|
+
export declare const countries: iC6RestfulModel<RestTableNames> & iDefineCountries;
|
|
162
|
+
export interface iGeometries {
|
|
163
|
+
'geometry_id'?: Buffer | string;
|
|
164
|
+
'geometry_type'?: 'Parcel' | 'Road' | 'District' | 'Zip Code' | 'State Boundary' | 'Country Boundary' | 'County Boundary' | 'City Boundary' | 'Unclaimed Land' | 'Other' | null;
|
|
165
|
+
'shape'?: GeoJSON.Geometry;
|
|
166
|
+
'shape_hash'?: Buffer | string | null;
|
|
167
|
+
'area'?: number | null;
|
|
168
|
+
'created_at'?: Date | string | null;
|
|
169
|
+
}
|
|
170
|
+
interface iDefineGeometries {
|
|
171
|
+
'GEOMETRY_ID': string;
|
|
172
|
+
'GEOMETRY_TYPE': string;
|
|
173
|
+
'SHAPE': string;
|
|
174
|
+
'SHAPE_HASH': string;
|
|
175
|
+
'AREA': string;
|
|
176
|
+
'CREATED_AT': string;
|
|
177
|
+
}
|
|
178
|
+
export declare const geometries: iC6RestfulModel<RestTableNames> & iDefineGeometries;
|
|
179
|
+
export interface iImages {
|
|
180
|
+
'image_id'?: Buffer | string;
|
|
181
|
+
'parcel_id'?: Buffer | string;
|
|
182
|
+
'label'?: string | null;
|
|
183
|
+
'data_uri'?: string | null;
|
|
184
|
+
'uploaded_at'?: Date | string | null;
|
|
185
|
+
'source_id'?: Buffer | string | null;
|
|
186
|
+
}
|
|
187
|
+
interface iDefineImages {
|
|
188
|
+
'IMAGE_ID': string;
|
|
189
|
+
'PARCEL_ID': string;
|
|
190
|
+
'LABEL': string;
|
|
191
|
+
'DATA_URI': string;
|
|
192
|
+
'UPLOADED_AT': string;
|
|
193
|
+
'SOURCE_ID': string;
|
|
194
|
+
}
|
|
195
|
+
export declare const images: iC6RestfulModel<RestTableNames> & iDefineImages;
|
|
196
|
+
export interface iLand_Section_Info {
|
|
197
|
+
'parcel_id'?: Buffer | string;
|
|
198
|
+
'section'?: string | null;
|
|
199
|
+
'township'?: string | null;
|
|
200
|
+
'range'?: string | null;
|
|
201
|
+
'quarter'?: string | null;
|
|
202
|
+
'updated_at'?: Date | string | null;
|
|
203
|
+
}
|
|
204
|
+
interface iDefineLand_Section_Info {
|
|
205
|
+
'PARCEL_ID': string;
|
|
206
|
+
'SECTION': string;
|
|
207
|
+
'TOWNSHIP': string;
|
|
208
|
+
'RANGE': string;
|
|
209
|
+
'QUARTER': string;
|
|
210
|
+
'UPDATED_AT': string;
|
|
211
|
+
}
|
|
212
|
+
export declare const land_section_info: iC6RestfulModel<RestTableNames> & iDefineLand_Section_Info;
|
|
213
|
+
export interface iNeighborhoods {
|
|
214
|
+
'neighborhood_id'?: Buffer | string;
|
|
215
|
+
'code'?: string | null;
|
|
216
|
+
'extension'?: string | null;
|
|
217
|
+
}
|
|
218
|
+
interface iDefineNeighborhoods {
|
|
219
|
+
'NEIGHBORHOOD_ID': string;
|
|
220
|
+
'CODE': string;
|
|
221
|
+
'EXTENSION': string;
|
|
222
|
+
}
|
|
223
|
+
export declare const neighborhoods: iC6RestfulModel<RestTableNames> & iDefineNeighborhoods;
|
|
224
|
+
export interface iParcel_Building_Details {
|
|
225
|
+
'building_id'?: Buffer | string;
|
|
226
|
+
'parcel_id'?: Buffer | string;
|
|
227
|
+
'gla'?: number | null;
|
|
228
|
+
'basement_area'?: number | null;
|
|
229
|
+
'finished_basement_area'?: number | null;
|
|
230
|
+
'bathrooms'?: number | null;
|
|
231
|
+
'garage_size'?: string | null;
|
|
232
|
+
'quality'?: string | null;
|
|
233
|
+
'condition'?: string | null;
|
|
234
|
+
'site_size_sqft'?: number | null;
|
|
235
|
+
'zoning_code'?: string | null;
|
|
236
|
+
'zoning_description'?: string | null;
|
|
237
|
+
'created_at'?: Date | string | null;
|
|
238
|
+
'year_built'?: Date | string | null;
|
|
239
|
+
'bedrooms'?: number | null;
|
|
240
|
+
'style'?: string | null;
|
|
241
|
+
'property_age'?: number | null;
|
|
242
|
+
'legal_block'?: string | null;
|
|
243
|
+
'prior_sale_price'?: number | null;
|
|
244
|
+
'prior_sale_date'?: Date | string | null;
|
|
245
|
+
'lot_number'?: string | null;
|
|
246
|
+
'subdivision_name'?: string | null;
|
|
247
|
+
'subdivision_code'?: string | null;
|
|
248
|
+
'tract'?: string | null;
|
|
249
|
+
'walkout_basement_flag'?: string | null;
|
|
250
|
+
'occupancy_code'?: string | null;
|
|
251
|
+
'built_as_code'?: string | null;
|
|
252
|
+
'exterior_construction_type'?: string | null;
|
|
253
|
+
'interior_finish_type'?: string | null;
|
|
254
|
+
'source_id'?: Buffer | string | null;
|
|
255
|
+
}
|
|
256
|
+
interface iDefineParcel_Building_Details {
|
|
257
|
+
'BUILDING_ID': string;
|
|
258
|
+
'PARCEL_ID': string;
|
|
259
|
+
'GLA': string;
|
|
260
|
+
'BASEMENT_AREA': string;
|
|
261
|
+
'FINISHED_BASEMENT_AREA': string;
|
|
262
|
+
'BATHROOMS': string;
|
|
263
|
+
'GARAGE_SIZE': string;
|
|
264
|
+
'QUALITY': string;
|
|
265
|
+
'CONDITION': string;
|
|
266
|
+
'SITE_SIZE_SQFT': string;
|
|
267
|
+
'ZONING_CODE': string;
|
|
268
|
+
'ZONING_DESCRIPTION': string;
|
|
269
|
+
'CREATED_AT': string;
|
|
270
|
+
'YEAR_BUILT': string;
|
|
271
|
+
'BEDROOMS': string;
|
|
272
|
+
'STYLE': string;
|
|
273
|
+
'PROPERTY_AGE': string;
|
|
274
|
+
'LEGAL_BLOCK': string;
|
|
275
|
+
'PRIOR_SALE_PRICE': string;
|
|
276
|
+
'PRIOR_SALE_DATE': string;
|
|
277
|
+
'LOT_NUMBER': string;
|
|
278
|
+
'SUBDIVISION_NAME': string;
|
|
279
|
+
'SUBDIVISION_CODE': string;
|
|
280
|
+
'TRACT': string;
|
|
281
|
+
'WALKOUT_BASEMENT_FLAG': string;
|
|
282
|
+
'OCCUPANCY_CODE': string;
|
|
283
|
+
'BUILT_AS_CODE': string;
|
|
284
|
+
'EXTERIOR_CONSTRUCTION_TYPE': string;
|
|
285
|
+
'INTERIOR_FINISH_TYPE': string;
|
|
286
|
+
'SOURCE_ID': string;
|
|
287
|
+
}
|
|
288
|
+
export declare const parcel_building_details: iC6RestfulModel<RestTableNames> & iDefineParcel_Building_Details;
|
|
289
|
+
export interface iParcel_Neighborhoods {
|
|
290
|
+
'id'?: Buffer | string;
|
|
291
|
+
'parcel_id'?: Buffer | string;
|
|
292
|
+
'neighborhood_id'?: Buffer | string;
|
|
293
|
+
}
|
|
294
|
+
interface iDefineParcel_Neighborhoods {
|
|
295
|
+
'ID': string;
|
|
296
|
+
'PARCEL_ID': string;
|
|
297
|
+
'NEIGHBORHOOD_ID': string;
|
|
298
|
+
}
|
|
299
|
+
export declare const parcel_neighborhoods: iC6RestfulModel<RestTableNames> & iDefineParcel_Neighborhoods;
|
|
300
|
+
export interface iParcel_Owners {
|
|
301
|
+
'owner_id'?: Buffer | string;
|
|
302
|
+
'parcel_id'?: Buffer | string;
|
|
303
|
+
'owner_name'?: string | null;
|
|
304
|
+
'street_address'?: string | null;
|
|
305
|
+
'city'?: string | null;
|
|
306
|
+
'state'?: string | null;
|
|
307
|
+
'zip'?: string | null;
|
|
308
|
+
'country'?: string | null;
|
|
309
|
+
'start_date'?: Date | string | null;
|
|
310
|
+
'end_date'?: Date | string | null;
|
|
311
|
+
'is_primary'?: number | null;
|
|
312
|
+
'created_at'?: Date | string | null;
|
|
313
|
+
'source_id'?: Buffer | string | null;
|
|
314
|
+
}
|
|
315
|
+
interface iDefineParcel_Owners {
|
|
316
|
+
'OWNER_ID': string;
|
|
317
|
+
'PARCEL_ID': string;
|
|
318
|
+
'OWNER_NAME': string;
|
|
319
|
+
'STREET_ADDRESS': string;
|
|
320
|
+
'CITY': string;
|
|
321
|
+
'STATE': string;
|
|
322
|
+
'ZIP': string;
|
|
323
|
+
'COUNTRY': string;
|
|
324
|
+
'START_DATE': string;
|
|
325
|
+
'END_DATE': string;
|
|
326
|
+
'IS_PRIMARY': string;
|
|
327
|
+
'CREATED_AT': string;
|
|
328
|
+
'SOURCE_ID': string;
|
|
329
|
+
}
|
|
330
|
+
export declare const parcel_owners: iC6RestfulModel<RestTableNames> & iDefineParcel_Owners;
|
|
331
|
+
export interface iParcel_Sales {
|
|
332
|
+
'sale_id'?: Buffer | string;
|
|
333
|
+
'parcel_id'?: Buffer | string;
|
|
334
|
+
'sale_date'?: Date | string | null;
|
|
335
|
+
'sale_price'?: number | null;
|
|
336
|
+
'sale_type'?: string | null;
|
|
337
|
+
'document_type'?: string | null;
|
|
338
|
+
'document_url'?: string | null;
|
|
339
|
+
'created_at'?: Date | string | null;
|
|
340
|
+
'source_id'?: Buffer | string | null;
|
|
341
|
+
}
|
|
342
|
+
interface iDefineParcel_Sales {
|
|
343
|
+
'SALE_ID': string;
|
|
344
|
+
'PARCEL_ID': string;
|
|
345
|
+
'SALE_DATE': string;
|
|
346
|
+
'SALE_PRICE': string;
|
|
347
|
+
'SALE_TYPE': string;
|
|
348
|
+
'DOCUMENT_TYPE': string;
|
|
349
|
+
'DOCUMENT_URL': string;
|
|
350
|
+
'CREATED_AT': string;
|
|
351
|
+
'SOURCE_ID': string;
|
|
352
|
+
}
|
|
353
|
+
export declare const parcel_sales: iC6RestfulModel<RestTableNames> & iDefineParcel_Sales;
|
|
354
|
+
export interface iParcel_Tax_History {
|
|
355
|
+
'tax_id'?: Buffer | string;
|
|
356
|
+
'parcel_id'?: Buffer | string;
|
|
357
|
+
'tax_year'?: Date | string;
|
|
358
|
+
'actual_value_source'?: string | null;
|
|
359
|
+
'assessed_value_source'?: string | null;
|
|
360
|
+
'taxes_paid_source'?: string | null;
|
|
361
|
+
'notes'?: string | null;
|
|
362
|
+
'actual_value'?: number | null;
|
|
363
|
+
'assessed_value'?: number | null;
|
|
364
|
+
'taxes_paid'?: number | null;
|
|
365
|
+
'mill_levy'?: number | null;
|
|
366
|
+
'taxable_value'?: number | null;
|
|
367
|
+
'created_at'?: Date | string | null;
|
|
368
|
+
'source_id'?: Buffer | string | null;
|
|
369
|
+
}
|
|
370
|
+
interface iDefineParcel_Tax_History {
|
|
371
|
+
'TAX_ID': string;
|
|
372
|
+
'PARCEL_ID': string;
|
|
373
|
+
'TAX_YEAR': string;
|
|
374
|
+
'ACTUAL_VALUE_SOURCE': string;
|
|
375
|
+
'ASSESSED_VALUE_SOURCE': string;
|
|
376
|
+
'TAXES_PAID_SOURCE': string;
|
|
377
|
+
'NOTES': string;
|
|
378
|
+
'ACTUAL_VALUE': string;
|
|
379
|
+
'ASSESSED_VALUE': string;
|
|
380
|
+
'TAXES_PAID': string;
|
|
381
|
+
'MILL_LEVY': string;
|
|
382
|
+
'TAXABLE_VALUE': string;
|
|
383
|
+
'CREATED_AT': string;
|
|
384
|
+
'SOURCE_ID': string;
|
|
385
|
+
}
|
|
386
|
+
export declare const parcel_tax_history: iC6RestfulModel<RestTableNames> & iDefineParcel_Tax_History;
|
|
387
|
+
export interface iParcels {
|
|
388
|
+
'parcel_id'?: Buffer | string;
|
|
389
|
+
'state_parcel_number'?: string | null;
|
|
390
|
+
'land_use_code'?: string | null;
|
|
391
|
+
'land_use_desc'?: string | null;
|
|
392
|
+
'deeded_area'?: number | null;
|
|
393
|
+
'calc_area'?: number | null;
|
|
394
|
+
'geometry_id'?: Buffer | string | null;
|
|
395
|
+
'created_at'?: Date | string | null;
|
|
396
|
+
'account_number'?: string | null;
|
|
397
|
+
'subdivision_filing_id'?: string | null;
|
|
398
|
+
'filing_no'?: string | null;
|
|
399
|
+
'filing_descr'?: string | null;
|
|
400
|
+
'subdivision_no'?: string | null;
|
|
401
|
+
'parcel_name'?: string | null;
|
|
402
|
+
'misc_anno'?: string | null;
|
|
403
|
+
'legal_block'?: string | null;
|
|
404
|
+
'legal_description_gis'?: string | null;
|
|
405
|
+
'legal_description_cama'?: string | null;
|
|
406
|
+
'parcel_type_code'?: string | null;
|
|
407
|
+
'parcel_type'?: string | null;
|
|
408
|
+
'account_type_code'?: string | null;
|
|
409
|
+
'account_subtype_code'?: string | null;
|
|
410
|
+
'land_economic_area_code'?: string | null;
|
|
411
|
+
'valuation_class_code'?: string | null;
|
|
412
|
+
'valuation_description'?: string | null;
|
|
413
|
+
'exempt_flag'?: string | null;
|
|
414
|
+
'valuation_type_code'?: string | null;
|
|
415
|
+
'total_net_acres'?: number | null;
|
|
416
|
+
'federal_id_no'?: string | null;
|
|
417
|
+
'tract'?: string | null;
|
|
418
|
+
'legal_description'?: string | null;
|
|
419
|
+
}
|
|
420
|
+
interface iDefineParcels {
|
|
421
|
+
'PARCEL_ID': string;
|
|
422
|
+
'STATE_PARCEL_NUMBER': string;
|
|
423
|
+
'LAND_USE_CODE': string;
|
|
424
|
+
'LAND_USE_DESC': string;
|
|
425
|
+
'DEEDED_AREA': string;
|
|
426
|
+
'CALC_AREA': string;
|
|
427
|
+
'GEOMETRY_ID': string;
|
|
428
|
+
'CREATED_AT': string;
|
|
429
|
+
'ACCOUNT_NUMBER': string;
|
|
430
|
+
'SUBDIVISION_FILING_ID': string;
|
|
431
|
+
'FILING_NO': string;
|
|
432
|
+
'FILING_DESCR': string;
|
|
433
|
+
'SUBDIVISION_NO': string;
|
|
434
|
+
'PARCEL_NAME': string;
|
|
435
|
+
'MISC_ANNO': string;
|
|
436
|
+
'LEGAL_BLOCK': string;
|
|
437
|
+
'LEGAL_DESCRIPTION_GIS': string;
|
|
438
|
+
'LEGAL_DESCRIPTION_CAMA': string;
|
|
439
|
+
'PARCEL_TYPE_CODE': string;
|
|
440
|
+
'PARCEL_TYPE': string;
|
|
441
|
+
'ACCOUNT_TYPE_CODE': string;
|
|
442
|
+
'ACCOUNT_SUBTYPE_CODE': string;
|
|
443
|
+
'LAND_ECONOMIC_AREA_CODE': string;
|
|
444
|
+
'VALUATION_CLASS_CODE': string;
|
|
445
|
+
'VALUATION_DESCRIPTION': string;
|
|
446
|
+
'EXEMPT_FLAG': string;
|
|
447
|
+
'VALUATION_TYPE_CODE': string;
|
|
448
|
+
'TOTAL_NET_ACRES': string;
|
|
449
|
+
'FEDERAL_ID_NO': string;
|
|
450
|
+
'TRACT': string;
|
|
451
|
+
'LEGAL_DESCRIPTION': string;
|
|
452
|
+
}
|
|
453
|
+
export declare const parcels: iC6RestfulModel<RestTableNames> & iDefineParcels;
|
|
454
|
+
export interface iPayment_Charge_Logs {
|
|
455
|
+
'log_id'?: Buffer | string;
|
|
456
|
+
'subscription_id'?: Buffer | string | null;
|
|
457
|
+
'attempted_at'?: Date | string;
|
|
458
|
+
'status'?: 'success' | 'pending' | 'failure' | null;
|
|
459
|
+
'amount_usd'?: number;
|
|
460
|
+
'transaction_id'?: string | null;
|
|
461
|
+
'error_message'?: string | null;
|
|
462
|
+
}
|
|
463
|
+
interface iDefinePayment_Charge_Logs {
|
|
464
|
+
'LOG_ID': string;
|
|
465
|
+
'SUBSCRIPTION_ID': string;
|
|
466
|
+
'ATTEMPTED_AT': string;
|
|
467
|
+
'STATUS': string;
|
|
468
|
+
'AMOUNT_USD': string;
|
|
469
|
+
'TRANSACTION_ID': string;
|
|
470
|
+
'ERROR_MESSAGE': string;
|
|
471
|
+
}
|
|
472
|
+
export declare const payment_charge_logs: iC6RestfulModel<RestTableNames> & iDefinePayment_Charge_Logs;
|
|
473
|
+
export interface iPayment_Subscriptions {
|
|
474
|
+
'subscription_id'?: Buffer | string;
|
|
475
|
+
'unit_id'?: Buffer | string;
|
|
476
|
+
'customer_profile_id'?: string | null;
|
|
477
|
+
'payment_profile_id'?: string | null;
|
|
478
|
+
'interval_years'?: number;
|
|
479
|
+
'first_charge_date'?: Date | string;
|
|
480
|
+
'next_charge_date'?: Date | string | null;
|
|
481
|
+
'amount_usd'?: number;
|
|
482
|
+
'updated_at'?: Date | string | null;
|
|
483
|
+
'created_at'?: Date | string | null;
|
|
484
|
+
}
|
|
485
|
+
interface iDefinePayment_Subscriptions {
|
|
486
|
+
'SUBSCRIPTION_ID': string;
|
|
487
|
+
'UNIT_ID': string;
|
|
488
|
+
'CUSTOMER_PROFILE_ID': string;
|
|
489
|
+
'PAYMENT_PROFILE_ID': string;
|
|
490
|
+
'INTERVAL_YEARS': string;
|
|
491
|
+
'FIRST_CHARGE_DATE': string;
|
|
492
|
+
'NEXT_CHARGE_DATE': string;
|
|
493
|
+
'AMOUNT_USD': string;
|
|
494
|
+
'UPDATED_AT': string;
|
|
495
|
+
'CREATED_AT': string;
|
|
496
|
+
}
|
|
497
|
+
export declare const payment_subscriptions: iC6RestfulModel<RestTableNames> & iDefinePayment_Subscriptions;
|
|
498
|
+
export interface iProperty_Units {
|
|
499
|
+
'unit_id'?: Buffer | string;
|
|
500
|
+
'parcel_id'?: Buffer | string | null;
|
|
501
|
+
'city_id'?: Buffer | string | null;
|
|
502
|
+
'state_id'?: Buffer | string | null;
|
|
503
|
+
'county_id'?: Buffer | string | null;
|
|
504
|
+
'zip_id'?: Buffer | string | null;
|
|
505
|
+
'tax_district_no'?: string | null;
|
|
506
|
+
'owner_name'?: string | null;
|
|
507
|
+
'address_number'?: string | null;
|
|
508
|
+
'address_number_suffix'?: string | null;
|
|
509
|
+
'num_suffix'?: string | null;
|
|
510
|
+
'pre_mod'?: string | null;
|
|
511
|
+
'pre_direction'?: string | null;
|
|
512
|
+
'pre_type'?: string | null;
|
|
513
|
+
'street_name'?: string | null;
|
|
514
|
+
'street_type'?: string | null;
|
|
515
|
+
'post_type'?: string | null;
|
|
516
|
+
'post_direction'?: string | null;
|
|
517
|
+
'post_modifier'?: string | null;
|
|
518
|
+
'full_address'?: string | null;
|
|
519
|
+
'unit'?: string | null;
|
|
520
|
+
'unit_designator'?: string | null;
|
|
521
|
+
'building_name'?: string | null;
|
|
522
|
+
'floor'?: string | null;
|
|
523
|
+
'place_name'?: string | null;
|
|
524
|
+
'neighborhood'?: string | null;
|
|
525
|
+
'additional_loc'?: string | null;
|
|
526
|
+
'place_type'?: string | null;
|
|
527
|
+
'mod_date'?: Date | string | null;
|
|
528
|
+
'active_status'?: 'public' | 'private' | 'restricted' | null;
|
|
529
|
+
'location'?: {
|
|
530
|
+
x: number;
|
|
531
|
+
y: number;
|
|
532
|
+
};
|
|
533
|
+
'latitude'?: number | null;
|
|
534
|
+
'longitude'?: number | null;
|
|
535
|
+
'source_id'?: Buffer | string | null;
|
|
536
|
+
}
|
|
537
|
+
interface iDefineProperty_Units {
|
|
538
|
+
'UNIT_ID': string;
|
|
539
|
+
'PARCEL_ID': string;
|
|
540
|
+
'CITY_ID': string;
|
|
541
|
+
'STATE_ID': string;
|
|
542
|
+
'COUNTY_ID': string;
|
|
543
|
+
'ZIP_ID': string;
|
|
544
|
+
'TAX_DISTRICT_NO': string;
|
|
545
|
+
'OWNER_NAME': string;
|
|
546
|
+
'ADDRESS_NUMBER': string;
|
|
547
|
+
'ADDRESS_NUMBER_SUFFIX': string;
|
|
548
|
+
'NUM_SUFFIX': string;
|
|
549
|
+
'PRE_MOD': string;
|
|
550
|
+
'PRE_DIRECTION': string;
|
|
551
|
+
'PRE_TYPE': string;
|
|
552
|
+
'STREET_NAME': string;
|
|
553
|
+
'STREET_TYPE': string;
|
|
554
|
+
'POST_TYPE': string;
|
|
555
|
+
'POST_DIRECTION': string;
|
|
556
|
+
'POST_MODIFIER': string;
|
|
557
|
+
'FULL_ADDRESS': string;
|
|
558
|
+
'UNIT': string;
|
|
559
|
+
'UNIT_DESIGNATOR': string;
|
|
560
|
+
'BUILDING_NAME': string;
|
|
561
|
+
'FLOOR': string;
|
|
562
|
+
'PLACE_NAME': string;
|
|
563
|
+
'NEIGHBORHOOD': string;
|
|
564
|
+
'ADDITIONAL_LOC': string;
|
|
565
|
+
'PLACE_TYPE': string;
|
|
566
|
+
'MOD_DATE': string;
|
|
567
|
+
'ACTIVE_STATUS': string;
|
|
568
|
+
'LOCATION': string;
|
|
569
|
+
'LATITUDE': string;
|
|
570
|
+
'LONGITUDE': string;
|
|
571
|
+
'SOURCE_ID': string;
|
|
572
|
+
}
|
|
573
|
+
export declare const property_units: iC6RestfulModel<RestTableNames> & iDefineProperty_Units;
|
|
574
|
+
export interface iSources {
|
|
575
|
+
'id'?: Buffer | string;
|
|
576
|
+
'name'?: string | null;
|
|
577
|
+
'url'?: string | null;
|
|
578
|
+
'jurisdiction'?: string | null;
|
|
579
|
+
'type'?: 'API' | 'HTML Scrape' | 'FTP' | 'PDF' | 'Manual Entry' | 'Other' | null;
|
|
580
|
+
'data'?: string | null;
|
|
581
|
+
'created_at'?: Date | string | null;
|
|
582
|
+
}
|
|
583
|
+
interface iDefineSources {
|
|
584
|
+
'ID': string;
|
|
585
|
+
'NAME': string;
|
|
586
|
+
'URL': string;
|
|
587
|
+
'JURISDICTION': string;
|
|
588
|
+
'TYPE': string;
|
|
589
|
+
'DATA': string;
|
|
590
|
+
'CREATED_AT': string;
|
|
591
|
+
}
|
|
592
|
+
export declare const sources: iC6RestfulModel<RestTableNames> & iDefineSources;
|
|
593
|
+
export interface iStates {
|
|
594
|
+
'state_id'?: Buffer | string;
|
|
595
|
+
'state_code'?: string | null;
|
|
596
|
+
'name'?: string | null;
|
|
597
|
+
'country_code'?: string | null;
|
|
598
|
+
'geometry_id'?: Buffer | string | null;
|
|
599
|
+
'created_at'?: Date | string | null;
|
|
600
|
+
}
|
|
601
|
+
interface iDefineStates {
|
|
602
|
+
'STATE_ID': string;
|
|
603
|
+
'STATE_CODE': string;
|
|
604
|
+
'NAME': string;
|
|
605
|
+
'COUNTRY_CODE': string;
|
|
606
|
+
'GEOMETRY_ID': string;
|
|
607
|
+
'CREATED_AT': string;
|
|
608
|
+
}
|
|
609
|
+
export declare const states: iC6RestfulModel<RestTableNames> & iDefineStates;
|
|
610
|
+
export interface iTax_Districts {
|
|
611
|
+
'tax_district_no'?: string | null;
|
|
612
|
+
'name'?: string | null;
|
|
613
|
+
'reduced_mill_levy'?: number | null;
|
|
614
|
+
'reduced_tax_rate'?: number | null;
|
|
615
|
+
}
|
|
616
|
+
interface iDefineTax_Districts {
|
|
617
|
+
'TAX_DISTRICT_NO': string;
|
|
618
|
+
'NAME': string;
|
|
619
|
+
'REDUCED_MILL_LEVY': string;
|
|
620
|
+
'REDUCED_TAX_RATE': string;
|
|
621
|
+
}
|
|
622
|
+
export declare const tax_districts: iC6RestfulModel<RestTableNames> & iDefineTax_Districts;
|
|
623
|
+
export interface iUsers {
|
|
624
|
+
'user_id'?: Buffer | string;
|
|
625
|
+
'name'?: string | null;
|
|
626
|
+
'email'?: string | null;
|
|
627
|
+
'password'?: string | null;
|
|
628
|
+
'created_at'?: Date | string | null;
|
|
629
|
+
}
|
|
630
|
+
interface iDefineUsers {
|
|
631
|
+
'USER_ID': string;
|
|
632
|
+
'NAME': string;
|
|
633
|
+
'EMAIL': string;
|
|
634
|
+
'PASSWORD': string;
|
|
635
|
+
'CREATED_AT': string;
|
|
636
|
+
}
|
|
637
|
+
export declare const users: iC6RestfulModel<RestTableNames> & iDefineUsers;
|
|
638
|
+
export interface iValuation_Reports {
|
|
639
|
+
'report_id'?: Buffer | string;
|
|
640
|
+
'unit_id'?: Buffer | string;
|
|
641
|
+
'report_name'?: string | null;
|
|
642
|
+
'report_data'?: any;
|
|
643
|
+
'sale_price'?: number | null;
|
|
644
|
+
'tax_amount'?: number | null;
|
|
645
|
+
'savings'?: number | null;
|
|
646
|
+
'agency'?: number | null;
|
|
647
|
+
'status'?: 'Ordered' | 'Assigned' | 'Submitted' | 'BOE Required' | 'BOE Scheduled' | 'BOE Complete' | 'Successful' | 'Failed' | 'Refunded' | null;
|
|
648
|
+
'assigned_to'?: Buffer | string | null;
|
|
649
|
+
'report_creator'?: Buffer | string | null;
|
|
650
|
+
'report_filler'?: Buffer | string | null;
|
|
651
|
+
'created_at'?: Date | string | null;
|
|
652
|
+
'updated_at'?: Date | string | null;
|
|
653
|
+
'assessment_year_start'?: Date | string;
|
|
654
|
+
'assessment_year_end'?: Date | string;
|
|
655
|
+
'sales_year_start'?: Date | string;
|
|
656
|
+
'sales_year_end'?: Date | string;
|
|
657
|
+
}
|
|
658
|
+
interface iDefineValuation_Reports {
|
|
659
|
+
'REPORT_ID': string;
|
|
660
|
+
'UNIT_ID': string;
|
|
661
|
+
'REPORT_NAME': string;
|
|
662
|
+
'REPORT_DATA': string;
|
|
663
|
+
'SALE_PRICE': string;
|
|
664
|
+
'TAX_AMOUNT': string;
|
|
665
|
+
'SAVINGS': string;
|
|
666
|
+
'AGENCY': string;
|
|
667
|
+
'STATUS': string;
|
|
668
|
+
'ASSIGNED_TO': string;
|
|
669
|
+
'REPORT_CREATOR': string;
|
|
670
|
+
'REPORT_FILLER': string;
|
|
671
|
+
'CREATED_AT': string;
|
|
672
|
+
'UPDATED_AT': string;
|
|
673
|
+
'ASSESSMENT_YEAR_START': string;
|
|
674
|
+
'ASSESSMENT_YEAR_END': string;
|
|
675
|
+
'SALES_YEAR_START': string;
|
|
676
|
+
'SALES_YEAR_END': string;
|
|
677
|
+
}
|
|
678
|
+
export declare const valuation_reports: iC6RestfulModel<RestTableNames> & iDefineValuation_Reports;
|
|
679
|
+
export interface iZip_Codes {
|
|
680
|
+
'zip_id'?: Buffer | string;
|
|
681
|
+
'zip_code'?: string | null;
|
|
682
|
+
'geometry_id'?: Buffer | string;
|
|
683
|
+
'created_at'?: Date | string | null;
|
|
684
|
+
}
|
|
685
|
+
interface iDefineZip_Codes {
|
|
686
|
+
'ZIP_ID': string;
|
|
687
|
+
'ZIP_CODE': string;
|
|
688
|
+
'GEOMETRY_ID': string;
|
|
689
|
+
'CREATED_AT': string;
|
|
690
|
+
}
|
|
691
|
+
export declare const zip_codes: iC6RestfulModel<RestTableNames> & iDefineZip_Codes;
|
|
692
|
+
export declare const TABLES: tC6Tables;
|
|
693
|
+
export declare const C6: iC6Object;
|
|
694
|
+
export declare const COLUMNS: {
|
|
695
|
+
'blog_categories.category_id': string;
|
|
696
|
+
'blog_categories.name': string;
|
|
697
|
+
'blog_images.image_id': string;
|
|
698
|
+
'blog_images.post_id': string;
|
|
699
|
+
'blog_images.label': string;
|
|
700
|
+
'blog_images.data_uri': string;
|
|
701
|
+
'blog_images.uploaded_at': string;
|
|
702
|
+
'blog_post_categories.post_id': string;
|
|
703
|
+
'blog_post_categories.category_id': string;
|
|
704
|
+
'blog_post_tags.post_id': string;
|
|
705
|
+
'blog_post_tags.tag_id': string;
|
|
706
|
+
'blog_posts.post_id': string;
|
|
707
|
+
'blog_posts.author_id': string;
|
|
708
|
+
'blog_posts.title': string;
|
|
709
|
+
'blog_posts.slug': string;
|
|
710
|
+
'blog_posts.excerpt': string;
|
|
711
|
+
'blog_posts.content': string;
|
|
712
|
+
'blog_posts.image_uri': string;
|
|
713
|
+
'blog_posts.status': string;
|
|
714
|
+
'blog_posts.published_at': string;
|
|
715
|
+
'blog_posts.created_at': string;
|
|
716
|
+
'blog_posts.updated_at': string;
|
|
717
|
+
'blog_tags.tag_id': string;
|
|
718
|
+
'blog_tags.name': string;
|
|
719
|
+
'cache.id': string;
|
|
720
|
+
'cache.value': string;
|
|
721
|
+
'cache.ttl': string;
|
|
722
|
+
'cache.created_at': string;
|
|
723
|
+
'cities.city_id': string;
|
|
724
|
+
'cities.name': string;
|
|
725
|
+
'cities.state_id': string;
|
|
726
|
+
'cities.geometry_id': string;
|
|
727
|
+
'cities.created_at': string;
|
|
728
|
+
'counties.county_id': string;
|
|
729
|
+
'counties.state_id': string;
|
|
730
|
+
'counties.county_fips': string;
|
|
731
|
+
'counties.name': string;
|
|
732
|
+
'counties.geometry_id': string;
|
|
733
|
+
'counties.created_at': string;
|
|
734
|
+
'countries.country_code': string;
|
|
735
|
+
'countries.name': string;
|
|
736
|
+
'countries.alpha_3_code': string;
|
|
737
|
+
'countries.numeric_code': string;
|
|
738
|
+
'countries.official_name': string;
|
|
739
|
+
'countries.common_name': string;
|
|
740
|
+
'countries.cca2': string;
|
|
741
|
+
'countries.cca3': string;
|
|
742
|
+
'countries.region': string;
|
|
743
|
+
'countries.subregion': string;
|
|
744
|
+
'countries.latitude': string;
|
|
745
|
+
'countries.longitude': string;
|
|
746
|
+
'countries.geometry_id': string;
|
|
747
|
+
'countries.created_at': string;
|
|
748
|
+
'geometries.geometry_id': string;
|
|
749
|
+
'geometries.geometry_type': string;
|
|
750
|
+
'geometries.shape': string;
|
|
751
|
+
'geometries.shape_hash': string;
|
|
752
|
+
'geometries.area': string;
|
|
753
|
+
'geometries.created_at': string;
|
|
754
|
+
'images.image_id': string;
|
|
755
|
+
'images.parcel_id': string;
|
|
756
|
+
'images.label': string;
|
|
757
|
+
'images.data_uri': string;
|
|
758
|
+
'images.uploaded_at': string;
|
|
759
|
+
'images.source_id': string;
|
|
760
|
+
'land_section_info.parcel_id': string;
|
|
761
|
+
'land_section_info.section': string;
|
|
762
|
+
'land_section_info.township': string;
|
|
763
|
+
'land_section_info.range': string;
|
|
764
|
+
'land_section_info.quarter': string;
|
|
765
|
+
'land_section_info.updated_at': string;
|
|
766
|
+
'neighborhoods.neighborhood_id': string;
|
|
767
|
+
'neighborhoods.code': string;
|
|
768
|
+
'neighborhoods.extension': string;
|
|
769
|
+
'parcel_building_details.building_id': string;
|
|
770
|
+
'parcel_building_details.parcel_id': string;
|
|
771
|
+
'parcel_building_details.gla': string;
|
|
772
|
+
'parcel_building_details.basement_area': string;
|
|
773
|
+
'parcel_building_details.finished_basement_area': string;
|
|
774
|
+
'parcel_building_details.bathrooms': string;
|
|
775
|
+
'parcel_building_details.garage_size': string;
|
|
776
|
+
'parcel_building_details.quality': string;
|
|
777
|
+
'parcel_building_details.condition': string;
|
|
778
|
+
'parcel_building_details.site_size_sqft': string;
|
|
779
|
+
'parcel_building_details.zoning_code': string;
|
|
780
|
+
'parcel_building_details.zoning_description': string;
|
|
781
|
+
'parcel_building_details.created_at': string;
|
|
782
|
+
'parcel_building_details.year_built': string;
|
|
783
|
+
'parcel_building_details.bedrooms': string;
|
|
784
|
+
'parcel_building_details.style': string;
|
|
785
|
+
'parcel_building_details.property_age': string;
|
|
786
|
+
'parcel_building_details.legal_block': string;
|
|
787
|
+
'parcel_building_details.prior_sale_price': string;
|
|
788
|
+
'parcel_building_details.prior_sale_date': string;
|
|
789
|
+
'parcel_building_details.lot_number': string;
|
|
790
|
+
'parcel_building_details.subdivision_name': string;
|
|
791
|
+
'parcel_building_details.subdivision_code': string;
|
|
792
|
+
'parcel_building_details.tract': string;
|
|
793
|
+
'parcel_building_details.walkout_basement_flag': string;
|
|
794
|
+
'parcel_building_details.occupancy_code': string;
|
|
795
|
+
'parcel_building_details.built_as_code': string;
|
|
796
|
+
'parcel_building_details.exterior_construction_type': string;
|
|
797
|
+
'parcel_building_details.interior_finish_type': string;
|
|
798
|
+
'parcel_building_details.source_id': string;
|
|
799
|
+
'parcel_neighborhoods.id': string;
|
|
800
|
+
'parcel_neighborhoods.parcel_id': string;
|
|
801
|
+
'parcel_neighborhoods.neighborhood_id': string;
|
|
802
|
+
'parcel_owners.owner_id': string;
|
|
803
|
+
'parcel_owners.parcel_id': string;
|
|
804
|
+
'parcel_owners.owner_name': string;
|
|
805
|
+
'parcel_owners.street_address': string;
|
|
806
|
+
'parcel_owners.city': string;
|
|
807
|
+
'parcel_owners.state': string;
|
|
808
|
+
'parcel_owners.zip': string;
|
|
809
|
+
'parcel_owners.country': string;
|
|
810
|
+
'parcel_owners.start_date': string;
|
|
811
|
+
'parcel_owners.end_date': string;
|
|
812
|
+
'parcel_owners.is_primary': string;
|
|
813
|
+
'parcel_owners.created_at': string;
|
|
814
|
+
'parcel_owners.source_id': string;
|
|
815
|
+
'parcel_sales.sale_id': string;
|
|
816
|
+
'parcel_sales.parcel_id': string;
|
|
817
|
+
'parcel_sales.sale_date': string;
|
|
818
|
+
'parcel_sales.sale_price': string;
|
|
819
|
+
'parcel_sales.sale_type': string;
|
|
820
|
+
'parcel_sales.document_type': string;
|
|
821
|
+
'parcel_sales.document_url': string;
|
|
822
|
+
'parcel_sales.created_at': string;
|
|
823
|
+
'parcel_sales.source_id': string;
|
|
824
|
+
'parcel_tax_history.tax_id': string;
|
|
825
|
+
'parcel_tax_history.parcel_id': string;
|
|
826
|
+
'parcel_tax_history.tax_year': string;
|
|
827
|
+
'parcel_tax_history.actual_value_source': string;
|
|
828
|
+
'parcel_tax_history.assessed_value_source': string;
|
|
829
|
+
'parcel_tax_history.taxes_paid_source': string;
|
|
830
|
+
'parcel_tax_history.notes': string;
|
|
831
|
+
'parcel_tax_history.actual_value': string;
|
|
832
|
+
'parcel_tax_history.assessed_value': string;
|
|
833
|
+
'parcel_tax_history.taxes_paid': string;
|
|
834
|
+
'parcel_tax_history.mill_levy': string;
|
|
835
|
+
'parcel_tax_history.taxable_value': string;
|
|
836
|
+
'parcel_tax_history.created_at': string;
|
|
837
|
+
'parcel_tax_history.source_id': string;
|
|
838
|
+
'parcels.parcel_id': string;
|
|
839
|
+
'parcels.state_parcel_number': string;
|
|
840
|
+
'parcels.land_use_code': string;
|
|
841
|
+
'parcels.land_use_desc': string;
|
|
842
|
+
'parcels.deeded_area': string;
|
|
843
|
+
'parcels.calc_area': string;
|
|
844
|
+
'parcels.geometry_id': string;
|
|
845
|
+
'parcels.created_at': string;
|
|
846
|
+
'parcels.account_number': string;
|
|
847
|
+
'parcels.subdivision_filing_id': string;
|
|
848
|
+
'parcels.filing_no': string;
|
|
849
|
+
'parcels.filing_descr': string;
|
|
850
|
+
'parcels.subdivision_no': string;
|
|
851
|
+
'parcels.parcel_name': string;
|
|
852
|
+
'parcels.misc_anno': string;
|
|
853
|
+
'parcels.legal_block': string;
|
|
854
|
+
'parcels.legal_description_gis': string;
|
|
855
|
+
'parcels.legal_description_cama': string;
|
|
856
|
+
'parcels.parcel_type_code': string;
|
|
857
|
+
'parcels.parcel_type': string;
|
|
858
|
+
'parcels.account_type_code': string;
|
|
859
|
+
'parcels.account_subtype_code': string;
|
|
860
|
+
'parcels.land_economic_area_code': string;
|
|
861
|
+
'parcels.valuation_class_code': string;
|
|
862
|
+
'parcels.valuation_description': string;
|
|
863
|
+
'parcels.exempt_flag': string;
|
|
864
|
+
'parcels.valuation_type_code': string;
|
|
865
|
+
'parcels.total_net_acres': string;
|
|
866
|
+
'parcels.federal_id_no': string;
|
|
867
|
+
'parcels.tract': string;
|
|
868
|
+
'parcels.legal_description': string;
|
|
869
|
+
'payment_charge_logs.log_id': string;
|
|
870
|
+
'payment_charge_logs.subscription_id': string;
|
|
871
|
+
'payment_charge_logs.attempted_at': string;
|
|
872
|
+
'payment_charge_logs.status': string;
|
|
873
|
+
'payment_charge_logs.amount_usd': string;
|
|
874
|
+
'payment_charge_logs.transaction_id': string;
|
|
875
|
+
'payment_charge_logs.error_message': string;
|
|
876
|
+
'payment_subscriptions.subscription_id': string;
|
|
877
|
+
'payment_subscriptions.unit_id': string;
|
|
878
|
+
'payment_subscriptions.customer_profile_id': string;
|
|
879
|
+
'payment_subscriptions.payment_profile_id': string;
|
|
880
|
+
'payment_subscriptions.interval_years': string;
|
|
881
|
+
'payment_subscriptions.first_charge_date': string;
|
|
882
|
+
'payment_subscriptions.next_charge_date': string;
|
|
883
|
+
'payment_subscriptions.amount_usd': string;
|
|
884
|
+
'payment_subscriptions.updated_at': string;
|
|
885
|
+
'payment_subscriptions.created_at': string;
|
|
886
|
+
'property_units.unit_id': string;
|
|
887
|
+
'property_units.parcel_id': string;
|
|
888
|
+
'property_units.city_id': string;
|
|
889
|
+
'property_units.state_id': string;
|
|
890
|
+
'property_units.county_id': string;
|
|
891
|
+
'property_units.zip_id': string;
|
|
892
|
+
'property_units.tax_district_no': string;
|
|
893
|
+
'property_units.owner_name': string;
|
|
894
|
+
'property_units.address_number': string;
|
|
895
|
+
'property_units.address_number_suffix': string;
|
|
896
|
+
'property_units.num_suffix': string;
|
|
897
|
+
'property_units.pre_mod': string;
|
|
898
|
+
'property_units.pre_direction': string;
|
|
899
|
+
'property_units.pre_type': string;
|
|
900
|
+
'property_units.street_name': string;
|
|
901
|
+
'property_units.street_type': string;
|
|
902
|
+
'property_units.post_type': string;
|
|
903
|
+
'property_units.post_direction': string;
|
|
904
|
+
'property_units.post_modifier': string;
|
|
905
|
+
'property_units.full_address': string;
|
|
906
|
+
'property_units.unit': string;
|
|
907
|
+
'property_units.unit_designator': string;
|
|
908
|
+
'property_units.building_name': string;
|
|
909
|
+
'property_units.floor': string;
|
|
910
|
+
'property_units.place_name': string;
|
|
911
|
+
'property_units.neighborhood': string;
|
|
912
|
+
'property_units.additional_loc': string;
|
|
913
|
+
'property_units.place_type': string;
|
|
914
|
+
'property_units.mod_date': string;
|
|
915
|
+
'property_units.active_status': string;
|
|
916
|
+
'property_units.location': string;
|
|
917
|
+
'property_units.latitude': string;
|
|
918
|
+
'property_units.longitude': string;
|
|
919
|
+
'property_units.source_id': string;
|
|
920
|
+
'sources.id': string;
|
|
921
|
+
'sources.name': string;
|
|
922
|
+
'sources.url': string;
|
|
923
|
+
'sources.jurisdiction': string;
|
|
924
|
+
'sources.type': string;
|
|
925
|
+
'sources.data': string;
|
|
926
|
+
'sources.created_at': string;
|
|
927
|
+
'states.state_id': string;
|
|
928
|
+
'states.state_code': string;
|
|
929
|
+
'states.name': string;
|
|
930
|
+
'states.country_code': string;
|
|
931
|
+
'states.geometry_id': string;
|
|
932
|
+
'states.created_at': string;
|
|
933
|
+
'tax_districts.tax_district_no': string;
|
|
934
|
+
'tax_districts.name': string;
|
|
935
|
+
'tax_districts.reduced_mill_levy': string;
|
|
936
|
+
'tax_districts.reduced_tax_rate': string;
|
|
937
|
+
'users.user_id': string;
|
|
938
|
+
'users.name': string;
|
|
939
|
+
'users.email': string;
|
|
940
|
+
'users.password': string;
|
|
941
|
+
'users.created_at': string;
|
|
942
|
+
'valuation_reports.report_id': string;
|
|
943
|
+
'valuation_reports.unit_id': string;
|
|
944
|
+
'valuation_reports.report_name': string;
|
|
945
|
+
'valuation_reports.report_data': string;
|
|
946
|
+
'valuation_reports.sale_price': string;
|
|
947
|
+
'valuation_reports.tax_amount': string;
|
|
948
|
+
'valuation_reports.savings': string;
|
|
949
|
+
'valuation_reports.agency': string;
|
|
950
|
+
'valuation_reports.status': string;
|
|
951
|
+
'valuation_reports.assigned_to': string;
|
|
952
|
+
'valuation_reports.report_creator': string;
|
|
953
|
+
'valuation_reports.report_filler': string;
|
|
954
|
+
'valuation_reports.created_at': string;
|
|
955
|
+
'valuation_reports.updated_at': string;
|
|
956
|
+
'valuation_reports.assessment_year_start': string;
|
|
957
|
+
'valuation_reports.assessment_year_end': string;
|
|
958
|
+
'valuation_reports.sales_year_start': string;
|
|
959
|
+
'valuation_reports.sales_year_end': string;
|
|
960
|
+
'zip_codes.zip_id': string;
|
|
961
|
+
'zip_codes.zip_code': string;
|
|
962
|
+
'zip_codes.geometry_id': string;
|
|
963
|
+
'zip_codes.created_at': string;
|
|
964
|
+
};
|
|
965
|
+
export type RestTableInterfaces = iBlog_Categories | iBlog_Images | iBlog_Post_Categories | iBlog_Post_Tags | iBlog_Posts | iBlog_Tags | iCache | iCities | iCounties | iCountries | iGeometries | iImages | iLand_Section_Info | iNeighborhoods | iParcel_Building_Details | iParcel_Neighborhoods | iParcel_Owners | iParcel_Sales | iParcel_Tax_History | iParcels | iPayment_Charge_Logs | iPayment_Subscriptions | iProperty_Units | iSources | iStates | iTax_Districts | iUsers | iValuation_Reports | iZip_Codes;
|
|
966
|
+
export type tStatefulApiData<T> = T[] | undefined | null;
|
|
967
|
+
export interface iRestfulObjectArrayTypes {
|
|
968
|
+
blog_categories: tStatefulApiData<iBlog_Categories>;
|
|
969
|
+
blog_images: tStatefulApiData<iBlog_Images>;
|
|
970
|
+
blog_post_categories: tStatefulApiData<iBlog_Post_Categories>;
|
|
971
|
+
blog_post_tags: tStatefulApiData<iBlog_Post_Tags>;
|
|
972
|
+
blog_posts: tStatefulApiData<iBlog_Posts>;
|
|
973
|
+
blog_tags: tStatefulApiData<iBlog_Tags>;
|
|
974
|
+
cache: tStatefulApiData<iCache>;
|
|
975
|
+
cities: tStatefulApiData<iCities>;
|
|
976
|
+
counties: tStatefulApiData<iCounties>;
|
|
977
|
+
countries: tStatefulApiData<iCountries>;
|
|
978
|
+
geometries: tStatefulApiData<iGeometries>;
|
|
979
|
+
images: tStatefulApiData<iImages>;
|
|
980
|
+
land_section_info: tStatefulApiData<iLand_Section_Info>;
|
|
981
|
+
neighborhoods: tStatefulApiData<iNeighborhoods>;
|
|
982
|
+
parcel_building_details: tStatefulApiData<iParcel_Building_Details>;
|
|
983
|
+
parcel_neighborhoods: tStatefulApiData<iParcel_Neighborhoods>;
|
|
984
|
+
parcel_owners: tStatefulApiData<iParcel_Owners>;
|
|
985
|
+
parcel_sales: tStatefulApiData<iParcel_Sales>;
|
|
986
|
+
parcel_tax_history: tStatefulApiData<iParcel_Tax_History>;
|
|
987
|
+
parcels: tStatefulApiData<iParcels>;
|
|
988
|
+
payment_charge_logs: tStatefulApiData<iPayment_Charge_Logs>;
|
|
989
|
+
payment_subscriptions: tStatefulApiData<iPayment_Subscriptions>;
|
|
990
|
+
property_units: tStatefulApiData<iProperty_Units>;
|
|
991
|
+
sources: tStatefulApiData<iSources>;
|
|
992
|
+
states: tStatefulApiData<iStates>;
|
|
993
|
+
tax_districts: tStatefulApiData<iTax_Districts>;
|
|
994
|
+
users: tStatefulApiData<iUsers>;
|
|
995
|
+
valuation_reports: tStatefulApiData<iValuation_Reports>;
|
|
996
|
+
zip_codes: tStatefulApiData<iZip_Codes>;
|
|
997
|
+
}
|
|
998
|
+
export declare const initialRestfulObjectsState: iRestfulObjectArrayTypes;
|
|
999
|
+
export type tRestfulObjectArrayValues = iRestfulObjectArrayTypes[keyof iRestfulObjectArrayTypes];
|
|
1000
|
+
export {};
|