@carbonorm/carbonreact 1.1.2 → 1.1.3

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 (34) hide show
  1. package/README.md +1 -0
  2. package/package.json +2 -3
  3. package/dist/index.d.ts +0 -1211
  4. package/dist/umd/CarbonReact.d.ts +0 -31
  5. package/dist/umd/components/Alert/Alert.d.ts +0 -24
  6. package/dist/umd/components/Errors/AccessDenied.d.ts +0 -4
  7. package/dist/umd/components/Errors/BackendThrowable.d.ts +0 -1
  8. package/dist/umd/components/Errors/ErrorHttpCode.d.ts +0 -5
  9. package/dist/umd/components/Errors/Localhost.d.ts +0 -1
  10. package/dist/umd/components/Errors/PageNotFound.d.ts +0 -1
  11. package/dist/umd/components/Loading/Loading.d.ts +0 -9
  12. package/dist/umd/components/Nest/Nest.d.ts +0 -49
  13. package/dist/umd/components/Popup/Popup.d.ts +0 -9
  14. package/dist/umd/hoc/GlobalHistory.d.ts +0 -6
  15. package/dist/umd/hoc/addValidSQL.d.ts +0 -2
  16. package/dist/umd/hoc/axiosInstance.d.ts +0 -5
  17. package/dist/umd/hoc/changed.d.ts +0 -2
  18. package/dist/umd/hoc/deleteRestfulObjectArrays.d.ts +0 -2
  19. package/dist/umd/hoc/getStyles.d.ts +0 -7
  20. package/dist/umd/hoc/hexToRgb.d.ts +0 -1
  21. package/dist/umd/hoc/isEdgeBrowser.d.ts +0 -2
  22. package/dist/umd/hoc/parseMultipleJson.d.ts +0 -1
  23. package/dist/umd/hoc/scrollIntoView.d.ts +0 -1
  24. package/dist/umd/hoc/setUrl.d.ts +0 -1
  25. package/dist/umd/hoc/updateRestfulObjectArrays.d.ts +0 -17
  26. package/dist/umd/hoc/uploadImage.d.ts +0 -4
  27. package/dist/umd/hoc/windowDimensions.d.ts +0 -4
  28. package/dist/umd/index.css +0 -13298
  29. package/dist/umd/index.css.map +0 -1
  30. package/dist/umd/index.d.ts +0 -52
  31. package/dist/umd/index.js +0 -4736
  32. package/dist/umd/index.js.map +0 -1
  33. package/dist/umd/variables/C6.d.ts +0 -1008
  34. package/dist/umd/variables/isProduction.d.ts +0 -2
@@ -1,1008 +0,0 @@
1
- export interface stringMap {
2
- [key: string]: string;
3
- }
4
- export interface stringNumberMap {
5
- [key: string]: string | number;
6
- }
7
- export interface RegExpMap {
8
- [key: string]: RegExp | RegExpMap;
9
- }
10
- export interface complexMap {
11
- [key: string]: stringMap | stringNumberMap | stringMap[] | RegExpMap;
12
- }
13
- export interface iTypeValidation {
14
- MYSQL_TYPE: string;
15
- MAX_LENGTH: string;
16
- AUTO_INCREMENT: boolean;
17
- SKIP_COLUMN_IN_POST: boolean;
18
- }
19
- export type RestTableNames = 'carbon_carbons' | 'carbon_comments' | 'carbon_documentation' | 'carbon_feature_group_references' | 'carbon_features' | 'carbon_group_references' | 'carbon_groups' | 'carbon_history_logs' | 'carbon_location_references' | 'carbon_locations' | 'carbon_photos' | 'carbon_reports' | 'carbon_sessions' | 'carbon_user_followers' | 'carbon_user_groups' | 'carbon_user_messages' | 'carbon_user_sessions' | 'carbon_user_tasks' | 'carbon_users' | 'carbon_wp_commentmeta' | 'carbon_wp_comments' | 'carbon_wp_links' | 'carbon_wp_options' | 'carbon_wp_postmeta' | 'carbon_wp_posts' | 'carbon_wp_term_relationships' | 'carbon_wp_term_taxonomy' | 'carbon_wp_termmeta' | 'carbon_wp_terms' | 'carbon_wp_usermeta' | 'carbon_wp_users';
20
- export type RestShortTableNames = 'carbons' | 'comments' | 'documentation' | 'feature_group_references' | 'features' | 'group_references' | 'groups' | 'history_logs' | 'location_references' | 'locations' | 'photos' | 'reports' | 'sessions' | 'user_followers' | 'user_groups' | 'user_messages' | 'user_sessions' | 'user_tasks' | 'users' | 'wp_commentmeta' | 'wp_comments' | 'wp_links' | 'wp_options' | 'wp_postmeta' | 'wp_posts' | 'wp_term_relationships' | 'wp_term_taxonomy' | 'wp_termmeta' | 'wp_terms' | 'wp_usermeta' | 'wp_users';
21
- export interface C6RestfulModel {
22
- TABLE_NAME: RestShortTableNames;
23
- PRIMARY: string[];
24
- COLUMNS: stringMap;
25
- REGEX_VALIDATION: RegExpMap;
26
- TYPE_VALIDATION: {
27
- [key: string]: iTypeValidation;
28
- };
29
- }
30
- export interface iCarbons {
31
- 'entity_pk'?: string;
32
- 'entity_fk'?: string;
33
- 'entity_tag'?: string;
34
- }
35
- interface iDefineCarbons {
36
- 'ENTITY_PK': string;
37
- 'ENTITY_FK': string;
38
- 'ENTITY_TAG': string;
39
- }
40
- export declare const carbons: C6RestfulModel & iDefineCarbons;
41
- export interface iComments {
42
- 'parent_id'?: string;
43
- 'comment_id'?: string;
44
- 'user_id'?: string;
45
- 'comment'?: string;
46
- }
47
- interface iDefineComments {
48
- 'PARENT_ID': string;
49
- 'COMMENT_ID': string;
50
- 'USER_ID': string;
51
- 'COMMENT': string;
52
- }
53
- export declare const comments: C6RestfulModel & iDefineComments;
54
- export interface iDocumentation {
55
- 'documentation_uri'?: string;
56
- 'documentation_data'?: string;
57
- 'documentation_version'?: string;
58
- 'documentation_active'?: number;
59
- }
60
- interface iDefineDocumentation {
61
- 'DOCUMENTATION_URI': string;
62
- 'DOCUMENTATION_DATA': string;
63
- 'DOCUMENTATION_VERSION': string;
64
- 'DOCUMENTATION_ACTIVE': string;
65
- }
66
- export declare const documentation: C6RestfulModel & iDefineDocumentation;
67
- export interface iFeature_Group_References {
68
- 'feature_entity_id'?: string;
69
- 'group_entity_id'?: string;
70
- }
71
- interface iDefineFeature_Group_References {
72
- 'FEATURE_ENTITY_ID': string;
73
- 'GROUP_ENTITY_ID': string;
74
- }
75
- export declare const feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
76
- export interface iFeatures {
77
- 'feature_entity_id'?: string;
78
- 'feature_code'?: string;
79
- 'feature_creation_date'?: string;
80
- }
81
- interface iDefineFeatures {
82
- 'FEATURE_ENTITY_ID': string;
83
- 'FEATURE_CODE': string;
84
- 'FEATURE_CREATION_DATE': string;
85
- }
86
- export declare const features: C6RestfulModel & iDefineFeatures;
87
- export interface iGroup_References {
88
- 'group_id'?: string;
89
- 'allowed_to_grant_group_id'?: string;
90
- }
91
- interface iDefineGroup_References {
92
- 'GROUP_ID': string;
93
- 'ALLOWED_TO_GRANT_GROUP_ID': string;
94
- }
95
- export declare const group_references: C6RestfulModel & iDefineGroup_References;
96
- export interface iGroups {
97
- 'group_name'?: string;
98
- 'entity_id'?: string;
99
- 'created_by'?: string;
100
- 'creation_date'?: string;
101
- }
102
- interface iDefineGroups {
103
- 'GROUP_NAME': string;
104
- 'ENTITY_ID': string;
105
- 'CREATED_BY': string;
106
- 'CREATION_DATE': string;
107
- }
108
- export declare const groups: C6RestfulModel & iDefineGroups;
109
- export interface iHistory_Logs {
110
- 'history_uuid'?: string;
111
- 'history_table'?: string;
112
- 'history_type'?: string;
113
- 'history_data'?: string;
114
- 'history_original_query'?: string;
115
- 'history_time'?: string;
116
- }
117
- interface iDefineHistory_Logs {
118
- 'HISTORY_UUID': string;
119
- 'HISTORY_TABLE': string;
120
- 'HISTORY_TYPE': string;
121
- 'HISTORY_DATA': string;
122
- 'HISTORY_ORIGINAL_QUERY': string;
123
- 'HISTORY_TIME': string;
124
- }
125
- export declare const history_logs: C6RestfulModel & iDefineHistory_Logs;
126
- export interface iLocation_References {
127
- 'entity_reference'?: string;
128
- 'location_reference'?: string;
129
- 'location_time'?: string;
130
- }
131
- interface iDefineLocation_References {
132
- 'ENTITY_REFERENCE': string;
133
- 'LOCATION_REFERENCE': string;
134
- 'LOCATION_TIME': string;
135
- }
136
- export declare const location_references: C6RestfulModel & iDefineLocation_References;
137
- export interface iLocations {
138
- 'entity_id'?: string;
139
- 'latitude'?: string;
140
- 'longitude'?: string;
141
- 'street'?: string;
142
- 'city'?: string;
143
- 'state'?: string;
144
- 'elevation'?: string;
145
- 'zip'?: number;
146
- }
147
- interface iDefineLocations {
148
- 'ENTITY_ID': string;
149
- 'LATITUDE': string;
150
- 'LONGITUDE': string;
151
- 'STREET': string;
152
- 'CITY': string;
153
- 'STATE': string;
154
- 'ELEVATION': string;
155
- 'ZIP': string;
156
- }
157
- export declare const locations: C6RestfulModel & iDefineLocations;
158
- export interface iPhotos {
159
- 'parent_id'?: string;
160
- 'photo_id'?: string;
161
- 'user_id'?: string;
162
- 'photo_path'?: string;
163
- 'photo_description'?: string;
164
- }
165
- interface iDefinePhotos {
166
- 'PARENT_ID': string;
167
- 'PHOTO_ID': string;
168
- 'USER_ID': string;
169
- 'PHOTO_PATH': string;
170
- 'PHOTO_DESCRIPTION': string;
171
- }
172
- export declare const photos: C6RestfulModel & iDefinePhotos;
173
- export interface iReports {
174
- 'log_level'?: string;
175
- 'report'?: string;
176
- 'date'?: string;
177
- 'call_trace'?: string;
178
- }
179
- interface iDefineReports {
180
- 'LOG_LEVEL': string;
181
- 'REPORT': string;
182
- 'DATE': string;
183
- 'CALL_TRACE': string;
184
- }
185
- export declare const reports: C6RestfulModel & iDefineReports;
186
- export interface iSessions {
187
- 'user_id'?: string;
188
- 'user_ip'?: string;
189
- 'session_id'?: string;
190
- 'session_expires'?: string;
191
- 'session_data'?: string;
192
- 'user_online_status'?: number;
193
- }
194
- interface iDefineSessions {
195
- 'USER_ID': string;
196
- 'USER_IP': string;
197
- 'SESSION_ID': string;
198
- 'SESSION_EXPIRES': string;
199
- 'SESSION_DATA': string;
200
- 'USER_ONLINE_STATUS': string;
201
- }
202
- export declare const sessions: C6RestfulModel & iDefineSessions;
203
- export interface iUser_Followers {
204
- 'follower_table_id'?: string;
205
- 'follows_user_id'?: string;
206
- 'user_id'?: string;
207
- }
208
- interface iDefineUser_Followers {
209
- 'FOLLOWER_TABLE_ID': string;
210
- 'FOLLOWS_USER_ID': string;
211
- 'USER_ID': string;
212
- }
213
- export declare const user_followers: C6RestfulModel & iDefineUser_Followers;
214
- export interface iUser_Groups {
215
- 'group_id'?: string;
216
- 'user_id'?: string;
217
- }
218
- interface iDefineUser_Groups {
219
- 'GROUP_ID': string;
220
- 'USER_ID': string;
221
- }
222
- export declare const user_groups: C6RestfulModel & iDefineUser_Groups;
223
- export interface iUser_Messages {
224
- 'message_id'?: string;
225
- 'from_user_id'?: string;
226
- 'to_user_id'?: string;
227
- 'message'?: string;
228
- 'message_read'?: number;
229
- 'creation_date'?: string;
230
- }
231
- interface iDefineUser_Messages {
232
- 'MESSAGE_ID': string;
233
- 'FROM_USER_ID': string;
234
- 'TO_USER_ID': string;
235
- 'MESSAGE': string;
236
- 'MESSAGE_READ': string;
237
- 'CREATION_DATE': string;
238
- }
239
- export declare const user_messages: C6RestfulModel & iDefineUser_Messages;
240
- export interface iUser_Sessions {
241
- 'user_id'?: string;
242
- 'user_ip'?: string;
243
- 'session_id'?: string;
244
- 'session_expires'?: string;
245
- 'session_data'?: string;
246
- 'user_online_status'?: number;
247
- }
248
- interface iDefineUser_Sessions {
249
- 'USER_ID': string;
250
- 'USER_IP': string;
251
- 'SESSION_ID': string;
252
- 'SESSION_EXPIRES': string;
253
- 'SESSION_DATA': string;
254
- 'USER_ONLINE_STATUS': string;
255
- }
256
- export declare const user_sessions: C6RestfulModel & iDefineUser_Sessions;
257
- export interface iUser_Tasks {
258
- 'task_id'?: string;
259
- 'user_id'?: string;
260
- 'from_id'?: string;
261
- 'task_name'?: string;
262
- 'task_description'?: string;
263
- 'percent_complete'?: number;
264
- 'start_date'?: string;
265
- 'end_date'?: string;
266
- }
267
- interface iDefineUser_Tasks {
268
- 'TASK_ID': string;
269
- 'USER_ID': string;
270
- 'FROM_ID': string;
271
- 'TASK_NAME': string;
272
- 'TASK_DESCRIPTION': string;
273
- 'PERCENT_COMPLETE': string;
274
- 'START_DATE': string;
275
- 'END_DATE': string;
276
- }
277
- export declare const user_tasks: C6RestfulModel & iDefineUser_Tasks;
278
- export interface iUsers {
279
- 'user_username'?: string;
280
- 'user_password'?: string;
281
- 'user_id'?: string;
282
- 'user_type'?: string;
283
- 'user_sport'?: string;
284
- 'user_session_id'?: string;
285
- 'user_facebook_id'?: string;
286
- 'user_first_name'?: string;
287
- 'user_last_name'?: string;
288
- 'user_profile_pic'?: string;
289
- 'user_profile_uri'?: string;
290
- 'user_cover_photo'?: string;
291
- 'user_birthday'?: string;
292
- 'user_gender'?: string;
293
- 'user_about_me'?: string;
294
- 'user_rank'?: number;
295
- 'user_email'?: string;
296
- 'user_email_code'?: string;
297
- 'user_email_confirmed'?: number;
298
- 'user_generated_string'?: string;
299
- 'user_membership'?: number;
300
- 'user_deactivated'?: number;
301
- 'user_last_login'?: string;
302
- 'user_ip'?: string;
303
- 'user_education_history'?: string;
304
- 'user_location'?: string;
305
- 'user_creation_date'?: string;
306
- }
307
- interface iDefineUsers {
308
- 'USER_USERNAME': string;
309
- 'USER_PASSWORD': string;
310
- 'USER_ID': string;
311
- 'USER_TYPE': string;
312
- 'USER_SPORT': string;
313
- 'USER_SESSION_ID': string;
314
- 'USER_FACEBOOK_ID': string;
315
- 'USER_FIRST_NAME': string;
316
- 'USER_LAST_NAME': string;
317
- 'USER_PROFILE_PIC': string;
318
- 'USER_PROFILE_URI': string;
319
- 'USER_COVER_PHOTO': string;
320
- 'USER_BIRTHDAY': string;
321
- 'USER_GENDER': string;
322
- 'USER_ABOUT_ME': string;
323
- 'USER_RANK': string;
324
- 'USER_EMAIL': string;
325
- 'USER_EMAIL_CODE': string;
326
- 'USER_EMAIL_CONFIRMED': string;
327
- 'USER_GENERATED_STRING': string;
328
- 'USER_MEMBERSHIP': string;
329
- 'USER_DEACTIVATED': string;
330
- 'USER_LAST_LOGIN': string;
331
- 'USER_IP': string;
332
- 'USER_EDUCATION_HISTORY': string;
333
- 'USER_LOCATION': string;
334
- 'USER_CREATION_DATE': string;
335
- }
336
- export declare const users: C6RestfulModel & iDefineUsers;
337
- export interface iWp_Commentmeta {
338
- 'meta_id'?: number;
339
- 'comment_id'?: number;
340
- 'meta_key'?: string;
341
- 'meta_value'?: string;
342
- }
343
- interface iDefineWp_Commentmeta {
344
- 'META_ID': string;
345
- 'COMMENT_ID': string;
346
- 'META_KEY': string;
347
- 'META_VALUE': string;
348
- }
349
- export declare const wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
350
- export interface iWp_Comments {
351
- 'comment_ID'?: number;
352
- 'comment_post_ID'?: number;
353
- 'comment_author'?: string;
354
- 'comment_author_email'?: string;
355
- 'comment_author_url'?: string;
356
- 'comment_author_IP'?: string;
357
- 'comment_date'?: string;
358
- 'comment_date_gmt'?: string;
359
- 'comment_content'?: string;
360
- 'comment_karma'?: number;
361
- 'comment_approved'?: string;
362
- 'comment_agent'?: string;
363
- 'comment_type'?: string;
364
- 'comment_parent'?: number;
365
- 'user_id'?: number;
366
- }
367
- interface iDefineWp_Comments {
368
- 'COMMENT_ID': string;
369
- 'COMMENT_POST_ID': string;
370
- 'COMMENT_AUTHOR': string;
371
- 'COMMENT_AUTHOR_EMAIL': string;
372
- 'COMMENT_AUTHOR_URL': string;
373
- 'COMMENT_AUTHOR_IP': string;
374
- 'COMMENT_DATE': string;
375
- 'COMMENT_DATE_GMT': string;
376
- 'COMMENT_CONTENT': string;
377
- 'COMMENT_KARMA': string;
378
- 'COMMENT_APPROVED': string;
379
- 'COMMENT_AGENT': string;
380
- 'COMMENT_TYPE': string;
381
- 'COMMENT_PARENT': string;
382
- 'USER_ID': string;
383
- }
384
- export declare const wp_comments: C6RestfulModel & iDefineWp_Comments;
385
- export interface iWp_Links {
386
- 'link_id'?: number;
387
- 'link_url'?: string;
388
- 'link_name'?: string;
389
- 'link_image'?: string;
390
- 'link_target'?: string;
391
- 'link_description'?: string;
392
- 'link_visible'?: string;
393
- 'link_owner'?: number;
394
- 'link_rating'?: number;
395
- 'link_updated'?: string;
396
- 'link_rel'?: string;
397
- 'link_notes'?: string;
398
- 'link_rss'?: string;
399
- }
400
- interface iDefineWp_Links {
401
- 'LINK_ID': string;
402
- 'LINK_URL': string;
403
- 'LINK_NAME': string;
404
- 'LINK_IMAGE': string;
405
- 'LINK_TARGET': string;
406
- 'LINK_DESCRIPTION': string;
407
- 'LINK_VISIBLE': string;
408
- 'LINK_OWNER': string;
409
- 'LINK_RATING': string;
410
- 'LINK_UPDATED': string;
411
- 'LINK_REL': string;
412
- 'LINK_NOTES': string;
413
- 'LINK_RSS': string;
414
- }
415
- export declare const wp_links: C6RestfulModel & iDefineWp_Links;
416
- export interface iWp_Options {
417
- 'option_id'?: number;
418
- 'option_name'?: string;
419
- 'option_value'?: string;
420
- 'autoload'?: string;
421
- }
422
- interface iDefineWp_Options {
423
- 'OPTION_ID': string;
424
- 'OPTION_NAME': string;
425
- 'OPTION_VALUE': string;
426
- 'AUTOLOAD': string;
427
- }
428
- export declare const wp_options: C6RestfulModel & iDefineWp_Options;
429
- export interface iWp_Postmeta {
430
- 'meta_id'?: number;
431
- 'post_id'?: number;
432
- 'meta_key'?: string;
433
- 'meta_value'?: string;
434
- }
435
- interface iDefineWp_Postmeta {
436
- 'META_ID': string;
437
- 'POST_ID': string;
438
- 'META_KEY': string;
439
- 'META_VALUE': string;
440
- }
441
- export declare const wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
442
- export interface iWp_Posts {
443
- 'ID'?: number;
444
- 'post_author'?: number;
445
- 'post_date'?: string;
446
- 'post_date_gmt'?: string;
447
- 'post_content'?: string;
448
- 'post_title'?: string;
449
- 'post_excerpt'?: string;
450
- 'post_status'?: string;
451
- 'comment_status'?: string;
452
- 'ping_status'?: string;
453
- 'post_password'?: string;
454
- 'post_name'?: string;
455
- 'to_ping'?: string;
456
- 'pinged'?: string;
457
- 'post_modified'?: string;
458
- 'post_modified_gmt'?: string;
459
- 'post_content_filtered'?: string;
460
- 'post_parent'?: number;
461
- 'guid'?: string;
462
- 'menu_order'?: number;
463
- 'post_type'?: string;
464
- 'post_mime_type'?: string;
465
- 'comment_count'?: number;
466
- }
467
- interface iDefineWp_Posts {
468
- 'ID': string;
469
- 'POST_AUTHOR': string;
470
- 'POST_DATE': string;
471
- 'POST_DATE_GMT': string;
472
- 'POST_CONTENT': string;
473
- 'POST_TITLE': string;
474
- 'POST_EXCERPT': string;
475
- 'POST_STATUS': string;
476
- 'COMMENT_STATUS': string;
477
- 'PING_STATUS': string;
478
- 'POST_PASSWORD': string;
479
- 'POST_NAME': string;
480
- 'TO_PING': string;
481
- 'PINGED': string;
482
- 'POST_MODIFIED': string;
483
- 'POST_MODIFIED_GMT': string;
484
- 'POST_CONTENT_FILTERED': string;
485
- 'POST_PARENT': string;
486
- 'GUID': string;
487
- 'MENU_ORDER': string;
488
- 'POST_TYPE': string;
489
- 'POST_MIME_TYPE': string;
490
- 'COMMENT_COUNT': string;
491
- }
492
- export declare const wp_posts: C6RestfulModel & iDefineWp_Posts;
493
- export interface iWp_Term_Relationships {
494
- 'object_id'?: number;
495
- 'term_taxonomy_id'?: number;
496
- 'term_order'?: number;
497
- }
498
- interface iDefineWp_Term_Relationships {
499
- 'OBJECT_ID': string;
500
- 'TERM_TAXONOMY_ID': string;
501
- 'TERM_ORDER': string;
502
- }
503
- export declare const wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
504
- export interface iWp_Term_Taxonomy {
505
- 'term_taxonomy_id'?: number;
506
- 'term_id'?: number;
507
- 'taxonomy'?: string;
508
- 'description'?: string;
509
- 'parent'?: number;
510
- 'count'?: number;
511
- }
512
- interface iDefineWp_Term_Taxonomy {
513
- 'TERM_TAXONOMY_ID': string;
514
- 'TERM_ID': string;
515
- 'TAXONOMY': string;
516
- 'DESCRIPTION': string;
517
- 'PARENT': string;
518
- 'COUNT': string;
519
- }
520
- export declare const wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
521
- export interface iWp_Termmeta {
522
- 'meta_id'?: number;
523
- 'term_id'?: number;
524
- 'meta_key'?: string;
525
- 'meta_value'?: string;
526
- }
527
- interface iDefineWp_Termmeta {
528
- 'META_ID': string;
529
- 'TERM_ID': string;
530
- 'META_KEY': string;
531
- 'META_VALUE': string;
532
- }
533
- export declare const wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
534
- export interface iWp_Terms {
535
- 'term_id'?: number;
536
- 'name'?: string;
537
- 'slug'?: string;
538
- 'term_group'?: number;
539
- }
540
- interface iDefineWp_Terms {
541
- 'TERM_ID': string;
542
- 'NAME': string;
543
- 'SLUG': string;
544
- 'TERM_GROUP': string;
545
- }
546
- export declare const wp_terms: C6RestfulModel & iDefineWp_Terms;
547
- export interface iWp_Usermeta {
548
- 'umeta_id'?: number;
549
- 'user_id'?: number;
550
- 'meta_key'?: string;
551
- 'meta_value'?: string;
552
- }
553
- interface iDefineWp_Usermeta {
554
- 'UMETA_ID': string;
555
- 'USER_ID': string;
556
- 'META_KEY': string;
557
- 'META_VALUE': string;
558
- }
559
- export declare const wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
560
- export interface iWp_Users {
561
- 'ID'?: number;
562
- 'user_login'?: string;
563
- 'user_pass'?: string;
564
- 'user_nicename'?: string;
565
- 'user_email'?: string;
566
- 'user_url'?: string;
567
- 'user_registered'?: string;
568
- 'user_activation_key'?: string;
569
- 'user_status'?: number;
570
- 'display_name'?: string;
571
- }
572
- interface iDefineWp_Users {
573
- 'ID': string;
574
- 'USER_LOGIN': string;
575
- 'USER_PASS': string;
576
- 'USER_NICENAME': string;
577
- 'USER_EMAIL': string;
578
- 'USER_URL': string;
579
- 'USER_REGISTERED': string;
580
- 'USER_ACTIVATION_KEY': string;
581
- 'USER_STATUS': string;
582
- 'DISPLAY_NAME': string;
583
- }
584
- export declare const wp_users: C6RestfulModel & iDefineWp_Users;
585
- export declare const TABLES: {
586
- carbons: C6RestfulModel & iDefineCarbons;
587
- comments: C6RestfulModel & iDefineComments;
588
- documentation: C6RestfulModel & iDefineDocumentation;
589
- feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
590
- features: C6RestfulModel & iDefineFeatures;
591
- group_references: C6RestfulModel & iDefineGroup_References;
592
- groups: C6RestfulModel & iDefineGroups;
593
- history_logs: C6RestfulModel & iDefineHistory_Logs;
594
- location_references: C6RestfulModel & iDefineLocation_References;
595
- locations: C6RestfulModel & iDefineLocations;
596
- photos: C6RestfulModel & iDefinePhotos;
597
- reports: C6RestfulModel & iDefineReports;
598
- sessions: C6RestfulModel & iDefineSessions;
599
- user_followers: C6RestfulModel & iDefineUser_Followers;
600
- user_groups: C6RestfulModel & iDefineUser_Groups;
601
- user_messages: C6RestfulModel & iDefineUser_Messages;
602
- user_sessions: C6RestfulModel & iDefineUser_Sessions;
603
- user_tasks: C6RestfulModel & iDefineUser_Tasks;
604
- users: C6RestfulModel & iDefineUsers;
605
- wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
606
- wp_comments: C6RestfulModel & iDefineWp_Comments;
607
- wp_links: C6RestfulModel & iDefineWp_Links;
608
- wp_options: C6RestfulModel & iDefineWp_Options;
609
- wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
610
- wp_posts: C6RestfulModel & iDefineWp_Posts;
611
- wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
612
- wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
613
- wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
614
- wp_terms: C6RestfulModel & iDefineWp_Terms;
615
- wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
616
- wp_users: C6RestfulModel & iDefineWp_Users;
617
- };
618
- export declare const C6: {
619
- carbons: C6RestfulModel & iDefineCarbons;
620
- comments: C6RestfulModel & iDefineComments;
621
- documentation: C6RestfulModel & iDefineDocumentation;
622
- feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
623
- features: C6RestfulModel & iDefineFeatures;
624
- group_references: C6RestfulModel & iDefineGroup_References;
625
- groups: C6RestfulModel & iDefineGroups;
626
- history_logs: C6RestfulModel & iDefineHistory_Logs;
627
- location_references: C6RestfulModel & iDefineLocation_References;
628
- locations: C6RestfulModel & iDefineLocations;
629
- photos: C6RestfulModel & iDefinePhotos;
630
- reports: C6RestfulModel & iDefineReports;
631
- sessions: C6RestfulModel & iDefineSessions;
632
- user_followers: C6RestfulModel & iDefineUser_Followers;
633
- user_groups: C6RestfulModel & iDefineUser_Groups;
634
- user_messages: C6RestfulModel & iDefineUser_Messages;
635
- user_sessions: C6RestfulModel & iDefineUser_Sessions;
636
- user_tasks: C6RestfulModel & iDefineUser_Tasks;
637
- users: C6RestfulModel & iDefineUsers;
638
- wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
639
- wp_comments: C6RestfulModel & iDefineWp_Comments;
640
- wp_links: C6RestfulModel & iDefineWp_Links;
641
- wp_options: C6RestfulModel & iDefineWp_Options;
642
- wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
643
- wp_posts: C6RestfulModel & iDefineWp_Posts;
644
- wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
645
- wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
646
- wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
647
- wp_terms: C6RestfulModel & iDefineWp_Terms;
648
- wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
649
- wp_users: C6RestfulModel & iDefineWp_Users;
650
- ADDDATE: string;
651
- ADDTIME: string;
652
- AS: string;
653
- ASC: string;
654
- BETWEEN: string;
655
- CONCAT: string;
656
- CONVERT_TZ: string;
657
- COUNT: string;
658
- COUNT_ALL: string;
659
- CURRENT_DATE: string;
660
- CURRENT_TIMESTAMP: string;
661
- DAY: string;
662
- DAY_HOUR: string;
663
- DAY_MICROSECOND: string;
664
- DAY_MINUTE: string;
665
- DAY_SECOND: string;
666
- DAYNAME: string;
667
- DAYOFMONTH: string;
668
- DAYOFWEEK: string;
669
- DAYOFYEAR: string;
670
- DATE: string;
671
- DATE_ADD: string;
672
- DATEDIFF: string;
673
- DATE_SUB: string;
674
- DATE_FORMAT: string;
675
- DESC: string;
676
- DISTINCT: string;
677
- EXTRACT: string;
678
- EQUAL: string;
679
- EQUAL_NULL_SAFE: string;
680
- FALSE: string;
681
- FULL_OUTER: string;
682
- FROM_DAYS: string;
683
- FROM_UNIXTIME: string;
684
- GET_FORMAT: string;
685
- GREATER_THAN: string;
686
- GROUP_BY: string;
687
- GROUP_CONCAT: string;
688
- GREATER_THAN_OR_EQUAL_TO: string;
689
- HAVING: string;
690
- HEX: string;
691
- HOUR: string;
692
- HOUR_MICROSECOND: string;
693
- HOUR_SECOND: string;
694
- HOUR_MINUTE: string;
695
- IN: string;
696
- IS: string;
697
- IS_NOT: string;
698
- INNER: string;
699
- INTERVAL: string;
700
- JOIN: string;
701
- LEFT: string;
702
- LEFT_OUTER: string;
703
- LESS_THAN: string;
704
- LESS_THAN_OR_EQUAL_TO: string;
705
- LIKE: string;
706
- LIMIT: string;
707
- LOCALTIME: string;
708
- LOCALTIMESTAMP: string;
709
- MAKEDATE: string;
710
- MAKETIME: string;
711
- MONTHNAME: string;
712
- MICROSECOND: string;
713
- MINUTE: string;
714
- MINUTE_MICROSECOND: string;
715
- MINUTE_SECOND: string;
716
- MIN: string;
717
- MAX: string;
718
- MONTH: string;
719
- NOT_LIKE: string;
720
- NOT_EQUAL: string;
721
- NOT_IN: string;
722
- NOW: string;
723
- NULL: string;
724
- ORDER: string;
725
- PAGE: string;
726
- PAGINATION: string;
727
- RIGHT_OUTER: string;
728
- SECOND: string;
729
- SECOND_MICROSECOND: string;
730
- SELECT: string;
731
- STR_TO_DATE: string;
732
- SUBDATE: string;
733
- SUBTIME: string;
734
- SUM: string;
735
- SYSDATE: string;
736
- TIME: string;
737
- TIME_FORMAT: string;
738
- TIME_TO_SEC: string;
739
- TIMEDIFF: string;
740
- TIMESTAMP: string;
741
- TIMESTAMPADD: string;
742
- TIMESTAMPDIFF: string;
743
- TO_DAYS: string;
744
- TO_SECONDS: string;
745
- TRANSACTION_TIMESTAMP: string;
746
- TRUE: string;
747
- UNIX_TIMESTAMP: string;
748
- UNKNOWN: string;
749
- UPDATE: string;
750
- UNHEX: string;
751
- UTC_DATE: string;
752
- UTC_TIME: string;
753
- UTC_TIMESTAMP: string;
754
- WHERE: string;
755
- WEEKDAY: string;
756
- WEEKOFYEAR: string;
757
- YEARWEEK: string;
758
- DEPENDANT_ON_ENTITY: string;
759
- OPTIONS: string;
760
- GET: string;
761
- POST: string;
762
- PUT: string;
763
- REPLACE: string;
764
- DELETE: string;
765
- REST_REQUEST_PREPROCESS_CALLBACKS: string;
766
- PREPROCESS: string;
767
- REST_REQUEST_FINNISH_CALLBACKS: string;
768
- FINISH: string;
769
- VALIDATE_C6_ENTITY_ID_REGEX: string;
770
- TABLES: {
771
- carbons: C6RestfulModel & iDefineCarbons;
772
- comments: C6RestfulModel & iDefineComments;
773
- documentation: C6RestfulModel & iDefineDocumentation;
774
- feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
775
- features: C6RestfulModel & iDefineFeatures;
776
- group_references: C6RestfulModel & iDefineGroup_References;
777
- groups: C6RestfulModel & iDefineGroups;
778
- history_logs: C6RestfulModel & iDefineHistory_Logs;
779
- location_references: C6RestfulModel & iDefineLocation_References;
780
- locations: C6RestfulModel & iDefineLocations;
781
- photos: C6RestfulModel & iDefinePhotos;
782
- reports: C6RestfulModel & iDefineReports;
783
- sessions: C6RestfulModel & iDefineSessions;
784
- user_followers: C6RestfulModel & iDefineUser_Followers;
785
- user_groups: C6RestfulModel & iDefineUser_Groups;
786
- user_messages: C6RestfulModel & iDefineUser_Messages;
787
- user_sessions: C6RestfulModel & iDefineUser_Sessions;
788
- user_tasks: C6RestfulModel & iDefineUser_Tasks;
789
- users: C6RestfulModel & iDefineUsers;
790
- wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
791
- wp_comments: C6RestfulModel & iDefineWp_Comments;
792
- wp_links: C6RestfulModel & iDefineWp_Links;
793
- wp_options: C6RestfulModel & iDefineWp_Options;
794
- wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
795
- wp_posts: C6RestfulModel & iDefineWp_Posts;
796
- wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
797
- wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
798
- wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
799
- wp_terms: C6RestfulModel & iDefineWp_Terms;
800
- wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
801
- wp_users: C6RestfulModel & iDefineWp_Users;
802
- };
803
- };
804
- export declare const COLUMNS: {
805
- 'carbon_carbons.entity_pk': string;
806
- 'carbon_carbons.entity_fk': string;
807
- 'carbon_carbons.entity_tag': string;
808
- 'carbon_comments.parent_id': string;
809
- 'carbon_comments.comment_id': string;
810
- 'carbon_comments.user_id': string;
811
- 'carbon_comments.comment': string;
812
- 'carbon_documentation.documentation_uri': string;
813
- 'carbon_documentation.documentation_data': string;
814
- 'carbon_documentation.documentation_version': string;
815
- 'carbon_documentation.documentation_active': string;
816
- 'carbon_feature_group_references.feature_entity_id': string;
817
- 'carbon_feature_group_references.group_entity_id': string;
818
- 'carbon_features.feature_entity_id': string;
819
- 'carbon_features.feature_code': string;
820
- 'carbon_features.feature_creation_date': string;
821
- 'carbon_group_references.group_id': string;
822
- 'carbon_group_references.allowed_to_grant_group_id': string;
823
- 'carbon_groups.group_name': string;
824
- 'carbon_groups.entity_id': string;
825
- 'carbon_groups.created_by': string;
826
- 'carbon_groups.creation_date': string;
827
- 'carbon_history_logs.history_uuid': string;
828
- 'carbon_history_logs.history_table': string;
829
- 'carbon_history_logs.history_type': string;
830
- 'carbon_history_logs.history_data': string;
831
- 'carbon_history_logs.history_original_query': string;
832
- 'carbon_history_logs.history_time': string;
833
- 'carbon_location_references.entity_reference': string;
834
- 'carbon_location_references.location_reference': string;
835
- 'carbon_location_references.location_time': string;
836
- 'carbon_locations.entity_id': string;
837
- 'carbon_locations.latitude': string;
838
- 'carbon_locations.longitude': string;
839
- 'carbon_locations.street': string;
840
- 'carbon_locations.city': string;
841
- 'carbon_locations.state': string;
842
- 'carbon_locations.elevation': string;
843
- 'carbon_locations.zip': string;
844
- 'carbon_photos.parent_id': string;
845
- 'carbon_photos.photo_id': string;
846
- 'carbon_photos.user_id': string;
847
- 'carbon_photos.photo_path': string;
848
- 'carbon_photos.photo_description': string;
849
- 'carbon_reports.log_level': string;
850
- 'carbon_reports.report': string;
851
- 'carbon_reports.date': string;
852
- 'carbon_reports.call_trace': string;
853
- 'carbon_sessions.user_id': string;
854
- 'carbon_sessions.user_ip': string;
855
- 'carbon_sessions.session_id': string;
856
- 'carbon_sessions.session_expires': string;
857
- 'carbon_sessions.session_data': string;
858
- 'carbon_sessions.user_online_status': string;
859
- 'carbon_user_followers.follower_table_id': string;
860
- 'carbon_user_followers.follows_user_id': string;
861
- 'carbon_user_followers.user_id': string;
862
- 'carbon_user_groups.group_id': string;
863
- 'carbon_user_groups.user_id': string;
864
- 'carbon_user_messages.message_id': string;
865
- 'carbon_user_messages.from_user_id': string;
866
- 'carbon_user_messages.to_user_id': string;
867
- 'carbon_user_messages.message': string;
868
- 'carbon_user_messages.message_read': string;
869
- 'carbon_user_messages.creation_date': string;
870
- 'carbon_user_sessions.user_id': string;
871
- 'carbon_user_sessions.user_ip': string;
872
- 'carbon_user_sessions.session_id': string;
873
- 'carbon_user_sessions.session_expires': string;
874
- 'carbon_user_sessions.session_data': string;
875
- 'carbon_user_sessions.user_online_status': string;
876
- 'carbon_user_tasks.task_id': string;
877
- 'carbon_user_tasks.user_id': string;
878
- 'carbon_user_tasks.from_id': string;
879
- 'carbon_user_tasks.task_name': string;
880
- 'carbon_user_tasks.task_description': string;
881
- 'carbon_user_tasks.percent_complete': string;
882
- 'carbon_user_tasks.start_date': string;
883
- 'carbon_user_tasks.end_date': string;
884
- 'carbon_users.user_username': string;
885
- 'carbon_users.user_password': string;
886
- 'carbon_users.user_id': string;
887
- 'carbon_users.user_type': string;
888
- 'carbon_users.user_sport': string;
889
- 'carbon_users.user_session_id': string;
890
- 'carbon_users.user_facebook_id': string;
891
- 'carbon_users.user_first_name': string;
892
- 'carbon_users.user_last_name': string;
893
- 'carbon_users.user_profile_pic': string;
894
- 'carbon_users.user_profile_uri': string;
895
- 'carbon_users.user_cover_photo': string;
896
- 'carbon_users.user_birthday': string;
897
- 'carbon_users.user_gender': string;
898
- 'carbon_users.user_about_me': string;
899
- 'carbon_users.user_rank': string;
900
- 'carbon_users.user_email': string;
901
- 'carbon_users.user_email_code': string;
902
- 'carbon_users.user_email_confirmed': string;
903
- 'carbon_users.user_generated_string': string;
904
- 'carbon_users.user_membership': string;
905
- 'carbon_users.user_deactivated': string;
906
- 'carbon_users.user_last_login': string;
907
- 'carbon_users.user_ip': string;
908
- 'carbon_users.user_education_history': string;
909
- 'carbon_users.user_location': string;
910
- 'carbon_users.user_creation_date': string;
911
- 'carbon_wp_commentmeta.meta_id': string;
912
- 'carbon_wp_commentmeta.comment_id': string;
913
- 'carbon_wp_commentmeta.meta_key': string;
914
- 'carbon_wp_commentmeta.meta_value': string;
915
- 'carbon_wp_comments.comment_ID': string;
916
- 'carbon_wp_comments.comment_post_ID': string;
917
- 'carbon_wp_comments.comment_author': string;
918
- 'carbon_wp_comments.comment_author_email': string;
919
- 'carbon_wp_comments.comment_author_url': string;
920
- 'carbon_wp_comments.comment_author_IP': string;
921
- 'carbon_wp_comments.comment_date': string;
922
- 'carbon_wp_comments.comment_date_gmt': string;
923
- 'carbon_wp_comments.comment_content': string;
924
- 'carbon_wp_comments.comment_karma': string;
925
- 'carbon_wp_comments.comment_approved': string;
926
- 'carbon_wp_comments.comment_agent': string;
927
- 'carbon_wp_comments.comment_type': string;
928
- 'carbon_wp_comments.comment_parent': string;
929
- 'carbon_wp_comments.user_id': string;
930
- 'carbon_wp_links.link_id': string;
931
- 'carbon_wp_links.link_url': string;
932
- 'carbon_wp_links.link_name': string;
933
- 'carbon_wp_links.link_image': string;
934
- 'carbon_wp_links.link_target': string;
935
- 'carbon_wp_links.link_description': string;
936
- 'carbon_wp_links.link_visible': string;
937
- 'carbon_wp_links.link_owner': string;
938
- 'carbon_wp_links.link_rating': string;
939
- 'carbon_wp_links.link_updated': string;
940
- 'carbon_wp_links.link_rel': string;
941
- 'carbon_wp_links.link_notes': string;
942
- 'carbon_wp_links.link_rss': string;
943
- 'carbon_wp_options.option_id': string;
944
- 'carbon_wp_options.option_name': string;
945
- 'carbon_wp_options.option_value': string;
946
- 'carbon_wp_options.autoload': string;
947
- 'carbon_wp_postmeta.meta_id': string;
948
- 'carbon_wp_postmeta.post_id': string;
949
- 'carbon_wp_postmeta.meta_key': string;
950
- 'carbon_wp_postmeta.meta_value': string;
951
- 'carbon_wp_posts.ID': string;
952
- 'carbon_wp_posts.post_author': string;
953
- 'carbon_wp_posts.post_date': string;
954
- 'carbon_wp_posts.post_date_gmt': string;
955
- 'carbon_wp_posts.post_content': string;
956
- 'carbon_wp_posts.post_title': string;
957
- 'carbon_wp_posts.post_excerpt': string;
958
- 'carbon_wp_posts.post_status': string;
959
- 'carbon_wp_posts.comment_status': string;
960
- 'carbon_wp_posts.ping_status': string;
961
- 'carbon_wp_posts.post_password': string;
962
- 'carbon_wp_posts.post_name': string;
963
- 'carbon_wp_posts.to_ping': string;
964
- 'carbon_wp_posts.pinged': string;
965
- 'carbon_wp_posts.post_modified': string;
966
- 'carbon_wp_posts.post_modified_gmt': string;
967
- 'carbon_wp_posts.post_content_filtered': string;
968
- 'carbon_wp_posts.post_parent': string;
969
- 'carbon_wp_posts.guid': string;
970
- 'carbon_wp_posts.menu_order': string;
971
- 'carbon_wp_posts.post_type': string;
972
- 'carbon_wp_posts.post_mime_type': string;
973
- 'carbon_wp_posts.comment_count': string;
974
- 'carbon_wp_term_relationships.object_id': string;
975
- 'carbon_wp_term_relationships.term_taxonomy_id': string;
976
- 'carbon_wp_term_relationships.term_order': string;
977
- 'carbon_wp_term_taxonomy.term_taxonomy_id': string;
978
- 'carbon_wp_term_taxonomy.term_id': string;
979
- 'carbon_wp_term_taxonomy.taxonomy': string;
980
- 'carbon_wp_term_taxonomy.description': string;
981
- 'carbon_wp_term_taxonomy.parent': string;
982
- 'carbon_wp_term_taxonomy.count': string;
983
- 'carbon_wp_termmeta.meta_id': string;
984
- 'carbon_wp_termmeta.term_id': string;
985
- 'carbon_wp_termmeta.meta_key': string;
986
- 'carbon_wp_termmeta.meta_value': string;
987
- 'carbon_wp_terms.term_id': string;
988
- 'carbon_wp_terms.name': string;
989
- 'carbon_wp_terms.slug': string;
990
- 'carbon_wp_terms.term_group': string;
991
- 'carbon_wp_usermeta.umeta_id': string;
992
- 'carbon_wp_usermeta.user_id': string;
993
- 'carbon_wp_usermeta.meta_key': string;
994
- 'carbon_wp_usermeta.meta_value': string;
995
- 'carbon_wp_users.ID': string;
996
- 'carbon_wp_users.user_login': string;
997
- 'carbon_wp_users.user_pass': string;
998
- 'carbon_wp_users.user_nicename': string;
999
- 'carbon_wp_users.user_email': string;
1000
- 'carbon_wp_users.user_url': string;
1001
- 'carbon_wp_users.user_registered': string;
1002
- 'carbon_wp_users.user_activation_key': string;
1003
- 'carbon_wp_users.user_status': string;
1004
- 'carbon_wp_users.display_name': string;
1005
- };
1006
- export type RestTableInterfaces = iCarbons | iComments | iDocumentation | iFeature_Group_References | iFeatures | iGroup_References | iGroups | iHistory_Logs | iLocation_References | iLocations | iPhotos | iReports | iSessions | iUser_Followers | iUser_Groups | iUser_Messages | iUser_Sessions | iUser_Tasks | iUsers | iWp_Commentmeta | iWp_Comments | iWp_Links | iWp_Options | iWp_Postmeta | iWp_Posts | iWp_Term_Relationships | iWp_Term_Taxonomy | iWp_Termmeta | iWp_Terms | iWp_Usermeta | iWp_Users;
1007
- export declare const convertForRequestBody: (restfulObject: RestTableInterfaces, tableName: string | string[], regexErrorHandler?: (message: string) => void) => {};
1008
- export {};