@carbonorm/carbonreact 4.0.3 → 4.0.5
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/CarbonReact.d.ts +7 -9
- package/dist/components/Alert/Alert.d.ts +6 -6
- package/dist/components/Errors/BackendThrowable.d.ts +3 -3
- package/dist/components/WebSocket/CarbonWebSocket.d.ts +5 -5
- package/dist/hoc/deleteRestfulObjectArrays.d.ts +3 -7
- package/dist/hoc/updateRestfulObjectArrays.d.ts +3 -7
- package/dist/index.cjs.js +3 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/variables/C6.d.ts +842 -0
- package/package.json +1 -1
- package/src/CarbonReact.tsx +11 -12
- package/src/components/Alert/Alert.tsx +8 -10
- package/src/components/Errors/BackendThrowable.tsx +3 -3
- package/src/components/WebSocket/CarbonWebSocket.tsx +6 -6
- package/src/hoc/deleteRestfulObjectArrays.tsx +2 -2
- package/src/hoc/updateRestfulObjectArrays.tsx +3 -3
- package/src/variables/C6.tsx +1 -0
|
@@ -0,0 +1,842 @@
|
|
|
1
|
+
import { tStatefulApiData } from "CarbonReact";
|
|
2
|
+
export interface stringMap {
|
|
3
|
+
[key: string]: string;
|
|
4
|
+
}
|
|
5
|
+
export interface stringNumberMap {
|
|
6
|
+
[key: string]: string | number;
|
|
7
|
+
}
|
|
8
|
+
export interface RegExpMap {
|
|
9
|
+
[key: string]: RegExp | RegExpMap;
|
|
10
|
+
}
|
|
11
|
+
export interface complexMap {
|
|
12
|
+
[key: string]: stringMap | stringNumberMap | stringMap[] | RegExpMap;
|
|
13
|
+
}
|
|
14
|
+
export interface iTypeValidation {
|
|
15
|
+
MYSQL_TYPE: string;
|
|
16
|
+
MAX_LENGTH: string;
|
|
17
|
+
AUTO_INCREMENT: boolean;
|
|
18
|
+
SKIP_COLUMN_IN_POST: boolean;
|
|
19
|
+
}
|
|
20
|
+
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_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';
|
|
21
|
+
export type RestShortTableNames = 'carbons' | 'comments' | 'documentation' | 'feature_group_references' | 'features' | 'group_references' | 'groups' | 'history_logs' | 'location_references' | 'locations' | 'photos' | 'reports' | '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';
|
|
22
|
+
export interface C6RestfulModel {
|
|
23
|
+
TABLE_NAME: RestShortTableNames;
|
|
24
|
+
PRIMARY: string[];
|
|
25
|
+
PRIMARY_SHORT: string[];
|
|
26
|
+
COLUMNS: stringMap;
|
|
27
|
+
REGEX_VALIDATION: RegExpMap;
|
|
28
|
+
TYPE_VALIDATION: {
|
|
29
|
+
[key: string]: iTypeValidation;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
export interface iCarbons {
|
|
33
|
+
'entity_pk'?: string;
|
|
34
|
+
'entity_fk'?: string;
|
|
35
|
+
'entity_tag'?: string;
|
|
36
|
+
}
|
|
37
|
+
interface iDefineCarbons {
|
|
38
|
+
'ENTITY_PK': string;
|
|
39
|
+
'ENTITY_FK': string;
|
|
40
|
+
'ENTITY_TAG': string;
|
|
41
|
+
}
|
|
42
|
+
export declare const carbons: C6RestfulModel & iDefineCarbons;
|
|
43
|
+
export interface iComments {
|
|
44
|
+
'parent_id'?: string;
|
|
45
|
+
'comment_id'?: string;
|
|
46
|
+
'user_id'?: string;
|
|
47
|
+
'comment'?: string;
|
|
48
|
+
}
|
|
49
|
+
interface iDefineComments {
|
|
50
|
+
'PARENT_ID': string;
|
|
51
|
+
'COMMENT_ID': string;
|
|
52
|
+
'USER_ID': string;
|
|
53
|
+
'COMMENT': string;
|
|
54
|
+
}
|
|
55
|
+
export declare const comments: C6RestfulModel & iDefineComments;
|
|
56
|
+
export interface iDocumentation {
|
|
57
|
+
'documentation_uri'?: string;
|
|
58
|
+
'documentation_data'?: string;
|
|
59
|
+
'documentation_version'?: string;
|
|
60
|
+
'documentation_active'?: number;
|
|
61
|
+
}
|
|
62
|
+
interface iDefineDocumentation {
|
|
63
|
+
'DOCUMENTATION_URI': string;
|
|
64
|
+
'DOCUMENTATION_DATA': string;
|
|
65
|
+
'DOCUMENTATION_VERSION': string;
|
|
66
|
+
'DOCUMENTATION_ACTIVE': string;
|
|
67
|
+
}
|
|
68
|
+
export declare const documentation: C6RestfulModel & iDefineDocumentation;
|
|
69
|
+
export interface iFeature_Group_References {
|
|
70
|
+
'feature_entity_id'?: string;
|
|
71
|
+
'group_entity_id'?: string;
|
|
72
|
+
}
|
|
73
|
+
interface iDefineFeature_Group_References {
|
|
74
|
+
'FEATURE_ENTITY_ID': string;
|
|
75
|
+
'GROUP_ENTITY_ID': string;
|
|
76
|
+
}
|
|
77
|
+
export declare const feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
|
|
78
|
+
export interface iFeatures {
|
|
79
|
+
'feature_entity_id'?: string;
|
|
80
|
+
'feature_code'?: string;
|
|
81
|
+
'feature_creation_date'?: string;
|
|
82
|
+
}
|
|
83
|
+
interface iDefineFeatures {
|
|
84
|
+
'FEATURE_ENTITY_ID': string;
|
|
85
|
+
'FEATURE_CODE': string;
|
|
86
|
+
'FEATURE_CREATION_DATE': string;
|
|
87
|
+
}
|
|
88
|
+
export declare const features: C6RestfulModel & iDefineFeatures;
|
|
89
|
+
export interface iGroup_References {
|
|
90
|
+
'group_id'?: string;
|
|
91
|
+
'allowed_to_grant_group_id'?: string;
|
|
92
|
+
}
|
|
93
|
+
interface iDefineGroup_References {
|
|
94
|
+
'GROUP_ID': string;
|
|
95
|
+
'ALLOWED_TO_GRANT_GROUP_ID': string;
|
|
96
|
+
}
|
|
97
|
+
export declare const group_references: C6RestfulModel & iDefineGroup_References;
|
|
98
|
+
export interface iGroups {
|
|
99
|
+
'group_name'?: string;
|
|
100
|
+
'entity_id'?: string;
|
|
101
|
+
'created_by'?: string;
|
|
102
|
+
'creation_date'?: string;
|
|
103
|
+
}
|
|
104
|
+
interface iDefineGroups {
|
|
105
|
+
'GROUP_NAME': string;
|
|
106
|
+
'ENTITY_ID': string;
|
|
107
|
+
'CREATED_BY': string;
|
|
108
|
+
'CREATION_DATE': string;
|
|
109
|
+
}
|
|
110
|
+
export declare const groups: C6RestfulModel & iDefineGroups;
|
|
111
|
+
export interface iHistory_Logs {
|
|
112
|
+
'history_uuid'?: string;
|
|
113
|
+
'history_table'?: string;
|
|
114
|
+
'history_type'?: string;
|
|
115
|
+
'history_data'?: string;
|
|
116
|
+
'history_original_query'?: string;
|
|
117
|
+
'history_time'?: string;
|
|
118
|
+
}
|
|
119
|
+
interface iDefineHistory_Logs {
|
|
120
|
+
'HISTORY_UUID': string;
|
|
121
|
+
'HISTORY_TABLE': string;
|
|
122
|
+
'HISTORY_TYPE': string;
|
|
123
|
+
'HISTORY_DATA': string;
|
|
124
|
+
'HISTORY_ORIGINAL_QUERY': string;
|
|
125
|
+
'HISTORY_TIME': string;
|
|
126
|
+
}
|
|
127
|
+
export declare const history_logs: C6RestfulModel & iDefineHistory_Logs;
|
|
128
|
+
export interface iLocation_References {
|
|
129
|
+
'entity_reference'?: string;
|
|
130
|
+
'location_reference'?: string;
|
|
131
|
+
'location_time'?: string;
|
|
132
|
+
}
|
|
133
|
+
interface iDefineLocation_References {
|
|
134
|
+
'ENTITY_REFERENCE': string;
|
|
135
|
+
'LOCATION_REFERENCE': string;
|
|
136
|
+
'LOCATION_TIME': string;
|
|
137
|
+
}
|
|
138
|
+
export declare const location_references: C6RestfulModel & iDefineLocation_References;
|
|
139
|
+
export interface iLocations {
|
|
140
|
+
'entity_id'?: string;
|
|
141
|
+
'latitude'?: string;
|
|
142
|
+
'longitude'?: string;
|
|
143
|
+
'street'?: string;
|
|
144
|
+
'city'?: string;
|
|
145
|
+
'state'?: string;
|
|
146
|
+
'elevation'?: string;
|
|
147
|
+
'zip'?: number;
|
|
148
|
+
}
|
|
149
|
+
interface iDefineLocations {
|
|
150
|
+
'ENTITY_ID': string;
|
|
151
|
+
'LATITUDE': string;
|
|
152
|
+
'LONGITUDE': string;
|
|
153
|
+
'STREET': string;
|
|
154
|
+
'CITY': string;
|
|
155
|
+
'STATE': string;
|
|
156
|
+
'ELEVATION': string;
|
|
157
|
+
'ZIP': string;
|
|
158
|
+
}
|
|
159
|
+
export declare const locations: C6RestfulModel & iDefineLocations;
|
|
160
|
+
export interface iPhotos {
|
|
161
|
+
'parent_id'?: string;
|
|
162
|
+
'photo_id'?: string;
|
|
163
|
+
'user_id'?: string;
|
|
164
|
+
'photo_path'?: string;
|
|
165
|
+
'photo_description'?: string;
|
|
166
|
+
}
|
|
167
|
+
interface iDefinePhotos {
|
|
168
|
+
'PARENT_ID': string;
|
|
169
|
+
'PHOTO_ID': string;
|
|
170
|
+
'USER_ID': string;
|
|
171
|
+
'PHOTO_PATH': string;
|
|
172
|
+
'PHOTO_DESCRIPTION': string;
|
|
173
|
+
}
|
|
174
|
+
export declare const photos: C6RestfulModel & iDefinePhotos;
|
|
175
|
+
export interface iReports {
|
|
176
|
+
'log_level'?: string;
|
|
177
|
+
'report'?: string;
|
|
178
|
+
'date'?: string;
|
|
179
|
+
'call_trace'?: string;
|
|
180
|
+
}
|
|
181
|
+
interface iDefineReports {
|
|
182
|
+
'LOG_LEVEL': string;
|
|
183
|
+
'REPORT': string;
|
|
184
|
+
'DATE': string;
|
|
185
|
+
'CALL_TRACE': string;
|
|
186
|
+
}
|
|
187
|
+
export declare const reports: C6RestfulModel & iDefineReports;
|
|
188
|
+
export interface iUser_Followers {
|
|
189
|
+
'follower_table_id'?: string;
|
|
190
|
+
'follows_user_id'?: string;
|
|
191
|
+
'user_id'?: string;
|
|
192
|
+
}
|
|
193
|
+
interface iDefineUser_Followers {
|
|
194
|
+
'FOLLOWER_TABLE_ID': string;
|
|
195
|
+
'FOLLOWS_USER_ID': string;
|
|
196
|
+
'USER_ID': string;
|
|
197
|
+
}
|
|
198
|
+
export declare const user_followers: C6RestfulModel & iDefineUser_Followers;
|
|
199
|
+
export interface iUser_Groups {
|
|
200
|
+
'group_id'?: string;
|
|
201
|
+
'user_id'?: string;
|
|
202
|
+
}
|
|
203
|
+
interface iDefineUser_Groups {
|
|
204
|
+
'GROUP_ID': string;
|
|
205
|
+
'USER_ID': string;
|
|
206
|
+
}
|
|
207
|
+
export declare const user_groups: C6RestfulModel & iDefineUser_Groups;
|
|
208
|
+
export interface iUser_Messages {
|
|
209
|
+
'message_id'?: string;
|
|
210
|
+
'from_user_id'?: string;
|
|
211
|
+
'to_user_id'?: string;
|
|
212
|
+
'message'?: string;
|
|
213
|
+
'message_read'?: number;
|
|
214
|
+
'creation_date'?: string;
|
|
215
|
+
}
|
|
216
|
+
interface iDefineUser_Messages {
|
|
217
|
+
'MESSAGE_ID': string;
|
|
218
|
+
'FROM_USER_ID': string;
|
|
219
|
+
'TO_USER_ID': string;
|
|
220
|
+
'MESSAGE': string;
|
|
221
|
+
'MESSAGE_READ': string;
|
|
222
|
+
'CREATION_DATE': string;
|
|
223
|
+
}
|
|
224
|
+
export declare const user_messages: C6RestfulModel & iDefineUser_Messages;
|
|
225
|
+
export interface iUser_Sessions {
|
|
226
|
+
'user_id'?: string;
|
|
227
|
+
'user_ip'?: string;
|
|
228
|
+
'session_id'?: string;
|
|
229
|
+
'session_expires'?: string;
|
|
230
|
+
'session_data'?: string;
|
|
231
|
+
'user_online_status'?: number;
|
|
232
|
+
}
|
|
233
|
+
interface iDefineUser_Sessions {
|
|
234
|
+
'USER_ID': string;
|
|
235
|
+
'USER_IP': string;
|
|
236
|
+
'SESSION_ID': string;
|
|
237
|
+
'SESSION_EXPIRES': string;
|
|
238
|
+
'SESSION_DATA': string;
|
|
239
|
+
'USER_ONLINE_STATUS': string;
|
|
240
|
+
}
|
|
241
|
+
export declare const user_sessions: C6RestfulModel & iDefineUser_Sessions;
|
|
242
|
+
export interface iUser_Tasks {
|
|
243
|
+
'task_id'?: string;
|
|
244
|
+
'user_id'?: string;
|
|
245
|
+
'from_id'?: string;
|
|
246
|
+
'task_name'?: string;
|
|
247
|
+
'task_description'?: string;
|
|
248
|
+
'percent_complete'?: number;
|
|
249
|
+
'start_date'?: string;
|
|
250
|
+
'end_date'?: string;
|
|
251
|
+
}
|
|
252
|
+
interface iDefineUser_Tasks {
|
|
253
|
+
'TASK_ID': string;
|
|
254
|
+
'USER_ID': string;
|
|
255
|
+
'FROM_ID': string;
|
|
256
|
+
'TASK_NAME': string;
|
|
257
|
+
'TASK_DESCRIPTION': string;
|
|
258
|
+
'PERCENT_COMPLETE': string;
|
|
259
|
+
'START_DATE': string;
|
|
260
|
+
'END_DATE': string;
|
|
261
|
+
}
|
|
262
|
+
export declare const user_tasks: C6RestfulModel & iDefineUser_Tasks;
|
|
263
|
+
export interface iUsers {
|
|
264
|
+
'user_username'?: string;
|
|
265
|
+
'user_password'?: string;
|
|
266
|
+
'user_id'?: string;
|
|
267
|
+
'user_type'?: string;
|
|
268
|
+
'user_sport'?: string;
|
|
269
|
+
'user_session_id'?: string;
|
|
270
|
+
'user_facebook_id'?: string;
|
|
271
|
+
'user_first_name'?: string;
|
|
272
|
+
'user_last_name'?: string;
|
|
273
|
+
'user_profile_pic'?: string;
|
|
274
|
+
'user_profile_uri'?: string;
|
|
275
|
+
'user_cover_photo'?: string;
|
|
276
|
+
'user_birthday'?: string;
|
|
277
|
+
'user_gender'?: string;
|
|
278
|
+
'user_about_me'?: string;
|
|
279
|
+
'user_rank'?: number;
|
|
280
|
+
'user_email'?: string;
|
|
281
|
+
'user_email_code'?: string;
|
|
282
|
+
'user_email_confirmed'?: number;
|
|
283
|
+
'user_generated_string'?: string;
|
|
284
|
+
'user_membership'?: number;
|
|
285
|
+
'user_deactivated'?: number;
|
|
286
|
+
'user_last_login'?: string;
|
|
287
|
+
'user_ip'?: string;
|
|
288
|
+
'user_education_history'?: string;
|
|
289
|
+
'user_location'?: string;
|
|
290
|
+
'user_creation_date'?: string;
|
|
291
|
+
}
|
|
292
|
+
interface iDefineUsers {
|
|
293
|
+
'USER_USERNAME': string;
|
|
294
|
+
'USER_PASSWORD': string;
|
|
295
|
+
'USER_ID': string;
|
|
296
|
+
'USER_TYPE': string;
|
|
297
|
+
'USER_SPORT': string;
|
|
298
|
+
'USER_SESSION_ID': string;
|
|
299
|
+
'USER_FACEBOOK_ID': string;
|
|
300
|
+
'USER_FIRST_NAME': string;
|
|
301
|
+
'USER_LAST_NAME': string;
|
|
302
|
+
'USER_PROFILE_PIC': string;
|
|
303
|
+
'USER_PROFILE_URI': string;
|
|
304
|
+
'USER_COVER_PHOTO': string;
|
|
305
|
+
'USER_BIRTHDAY': string;
|
|
306
|
+
'USER_GENDER': string;
|
|
307
|
+
'USER_ABOUT_ME': string;
|
|
308
|
+
'USER_RANK': string;
|
|
309
|
+
'USER_EMAIL': string;
|
|
310
|
+
'USER_EMAIL_CODE': string;
|
|
311
|
+
'USER_EMAIL_CONFIRMED': string;
|
|
312
|
+
'USER_GENERATED_STRING': string;
|
|
313
|
+
'USER_MEMBERSHIP': string;
|
|
314
|
+
'USER_DEACTIVATED': string;
|
|
315
|
+
'USER_LAST_LOGIN': string;
|
|
316
|
+
'USER_IP': string;
|
|
317
|
+
'USER_EDUCATION_HISTORY': string;
|
|
318
|
+
'USER_LOCATION': string;
|
|
319
|
+
'USER_CREATION_DATE': string;
|
|
320
|
+
}
|
|
321
|
+
export declare const users: C6RestfulModel & iDefineUsers;
|
|
322
|
+
export interface iWp_Commentmeta {
|
|
323
|
+
'meta_id'?: number;
|
|
324
|
+
'comment_id'?: number;
|
|
325
|
+
'meta_key'?: string;
|
|
326
|
+
'meta_value'?: string;
|
|
327
|
+
}
|
|
328
|
+
interface iDefineWp_Commentmeta {
|
|
329
|
+
'META_ID': string;
|
|
330
|
+
'COMMENT_ID': string;
|
|
331
|
+
'META_KEY': string;
|
|
332
|
+
'META_VALUE': string;
|
|
333
|
+
}
|
|
334
|
+
export declare const wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
|
|
335
|
+
export interface iWp_Comments {
|
|
336
|
+
'comment_ID'?: number;
|
|
337
|
+
'comment_post_ID'?: number;
|
|
338
|
+
'comment_author'?: string;
|
|
339
|
+
'comment_author_email'?: string;
|
|
340
|
+
'comment_author_url'?: string;
|
|
341
|
+
'comment_author_IP'?: string;
|
|
342
|
+
'comment_date'?: string;
|
|
343
|
+
'comment_date_gmt'?: string;
|
|
344
|
+
'comment_content'?: string;
|
|
345
|
+
'comment_karma'?: number;
|
|
346
|
+
'comment_approved'?: string;
|
|
347
|
+
'comment_agent'?: string;
|
|
348
|
+
'comment_type'?: string;
|
|
349
|
+
'comment_parent'?: number;
|
|
350
|
+
'user_id'?: number;
|
|
351
|
+
}
|
|
352
|
+
interface iDefineWp_Comments {
|
|
353
|
+
'COMMENT_ID': string;
|
|
354
|
+
'COMMENT_POST_ID': string;
|
|
355
|
+
'COMMENT_AUTHOR': string;
|
|
356
|
+
'COMMENT_AUTHOR_EMAIL': string;
|
|
357
|
+
'COMMENT_AUTHOR_URL': string;
|
|
358
|
+
'COMMENT_AUTHOR_IP': string;
|
|
359
|
+
'COMMENT_DATE': string;
|
|
360
|
+
'COMMENT_DATE_GMT': string;
|
|
361
|
+
'COMMENT_CONTENT': string;
|
|
362
|
+
'COMMENT_KARMA': string;
|
|
363
|
+
'COMMENT_APPROVED': string;
|
|
364
|
+
'COMMENT_AGENT': string;
|
|
365
|
+
'COMMENT_TYPE': string;
|
|
366
|
+
'COMMENT_PARENT': string;
|
|
367
|
+
'USER_ID': string;
|
|
368
|
+
}
|
|
369
|
+
export declare const wp_comments: C6RestfulModel & iDefineWp_Comments;
|
|
370
|
+
export interface iWp_Links {
|
|
371
|
+
'link_id'?: number;
|
|
372
|
+
'link_url'?: string;
|
|
373
|
+
'link_name'?: string;
|
|
374
|
+
'link_image'?: string;
|
|
375
|
+
'link_target'?: string;
|
|
376
|
+
'link_description'?: string;
|
|
377
|
+
'link_visible'?: string;
|
|
378
|
+
'link_owner'?: number;
|
|
379
|
+
'link_rating'?: number;
|
|
380
|
+
'link_updated'?: string;
|
|
381
|
+
'link_rel'?: string;
|
|
382
|
+
'link_notes'?: string;
|
|
383
|
+
'link_rss'?: string;
|
|
384
|
+
}
|
|
385
|
+
interface iDefineWp_Links {
|
|
386
|
+
'LINK_ID': string;
|
|
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': string;
|
|
394
|
+
'LINK_RATING': string;
|
|
395
|
+
'LINK_UPDATED': string;
|
|
396
|
+
'LINK_REL': string;
|
|
397
|
+
'LINK_NOTES': string;
|
|
398
|
+
'LINK_RSS': string;
|
|
399
|
+
}
|
|
400
|
+
export declare const wp_links: C6RestfulModel & iDefineWp_Links;
|
|
401
|
+
export interface iWp_Options {
|
|
402
|
+
'option_id'?: number;
|
|
403
|
+
'option_name'?: string;
|
|
404
|
+
'option_value'?: string;
|
|
405
|
+
'autoload'?: string;
|
|
406
|
+
}
|
|
407
|
+
interface iDefineWp_Options {
|
|
408
|
+
'OPTION_ID': string;
|
|
409
|
+
'OPTION_NAME': string;
|
|
410
|
+
'OPTION_VALUE': string;
|
|
411
|
+
'AUTOLOAD': string;
|
|
412
|
+
}
|
|
413
|
+
export declare const wp_options: C6RestfulModel & iDefineWp_Options;
|
|
414
|
+
export interface iWp_Postmeta {
|
|
415
|
+
'meta_id'?: number;
|
|
416
|
+
'post_id'?: number;
|
|
417
|
+
'meta_key'?: string;
|
|
418
|
+
'meta_value'?: string;
|
|
419
|
+
}
|
|
420
|
+
interface iDefineWp_Postmeta {
|
|
421
|
+
'META_ID': string;
|
|
422
|
+
'POST_ID': string;
|
|
423
|
+
'META_KEY': string;
|
|
424
|
+
'META_VALUE': string;
|
|
425
|
+
}
|
|
426
|
+
export declare const wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
|
|
427
|
+
export interface iWp_Posts {
|
|
428
|
+
'ID'?: number;
|
|
429
|
+
'post_author'?: number;
|
|
430
|
+
'post_date'?: string;
|
|
431
|
+
'post_date_gmt'?: string;
|
|
432
|
+
'post_content'?: string;
|
|
433
|
+
'post_title'?: string;
|
|
434
|
+
'post_excerpt'?: string;
|
|
435
|
+
'post_status'?: string;
|
|
436
|
+
'comment_status'?: string;
|
|
437
|
+
'ping_status'?: string;
|
|
438
|
+
'post_password'?: string;
|
|
439
|
+
'post_name'?: string;
|
|
440
|
+
'to_ping'?: string;
|
|
441
|
+
'pinged'?: string;
|
|
442
|
+
'post_modified'?: string;
|
|
443
|
+
'post_modified_gmt'?: string;
|
|
444
|
+
'post_content_filtered'?: string;
|
|
445
|
+
'post_parent'?: number;
|
|
446
|
+
'guid'?: string;
|
|
447
|
+
'menu_order'?: number;
|
|
448
|
+
'post_type'?: string;
|
|
449
|
+
'post_mime_type'?: string;
|
|
450
|
+
'comment_count'?: number;
|
|
451
|
+
}
|
|
452
|
+
interface iDefineWp_Posts {
|
|
453
|
+
'ID': string;
|
|
454
|
+
'POST_AUTHOR': string;
|
|
455
|
+
'POST_DATE': string;
|
|
456
|
+
'POST_DATE_GMT': string;
|
|
457
|
+
'POST_CONTENT': string;
|
|
458
|
+
'POST_TITLE': string;
|
|
459
|
+
'POST_EXCERPT': string;
|
|
460
|
+
'POST_STATUS': string;
|
|
461
|
+
'COMMENT_STATUS': string;
|
|
462
|
+
'PING_STATUS': string;
|
|
463
|
+
'POST_PASSWORD': string;
|
|
464
|
+
'POST_NAME': string;
|
|
465
|
+
'TO_PING': string;
|
|
466
|
+
'PINGED': string;
|
|
467
|
+
'POST_MODIFIED': string;
|
|
468
|
+
'POST_MODIFIED_GMT': string;
|
|
469
|
+
'POST_CONTENT_FILTERED': string;
|
|
470
|
+
'POST_PARENT': string;
|
|
471
|
+
'GUID': string;
|
|
472
|
+
'MENU_ORDER': string;
|
|
473
|
+
'POST_TYPE': string;
|
|
474
|
+
'POST_MIME_TYPE': string;
|
|
475
|
+
'COMMENT_COUNT': string;
|
|
476
|
+
}
|
|
477
|
+
export declare const wp_posts: C6RestfulModel & iDefineWp_Posts;
|
|
478
|
+
export interface iWp_Term_Relationships {
|
|
479
|
+
'object_id'?: number;
|
|
480
|
+
'term_taxonomy_id'?: number;
|
|
481
|
+
'term_order'?: number;
|
|
482
|
+
}
|
|
483
|
+
interface iDefineWp_Term_Relationships {
|
|
484
|
+
'OBJECT_ID': string;
|
|
485
|
+
'TERM_TAXONOMY_ID': string;
|
|
486
|
+
'TERM_ORDER': string;
|
|
487
|
+
}
|
|
488
|
+
export declare const wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
|
|
489
|
+
export interface iWp_Term_Taxonomy {
|
|
490
|
+
'term_taxonomy_id'?: number;
|
|
491
|
+
'term_id'?: number;
|
|
492
|
+
'taxonomy'?: string;
|
|
493
|
+
'description'?: string;
|
|
494
|
+
'parent'?: number;
|
|
495
|
+
'count'?: number;
|
|
496
|
+
}
|
|
497
|
+
interface iDefineWp_Term_Taxonomy {
|
|
498
|
+
'TERM_TAXONOMY_ID': string;
|
|
499
|
+
'TERM_ID': string;
|
|
500
|
+
'TAXONOMY': string;
|
|
501
|
+
'DESCRIPTION': string;
|
|
502
|
+
'PARENT': string;
|
|
503
|
+
'COUNT': string;
|
|
504
|
+
}
|
|
505
|
+
export declare const wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
|
|
506
|
+
export interface iWp_Termmeta {
|
|
507
|
+
'meta_id'?: number;
|
|
508
|
+
'term_id'?: number;
|
|
509
|
+
'meta_key'?: string;
|
|
510
|
+
'meta_value'?: string;
|
|
511
|
+
}
|
|
512
|
+
interface iDefineWp_Termmeta {
|
|
513
|
+
'META_ID': string;
|
|
514
|
+
'TERM_ID': string;
|
|
515
|
+
'META_KEY': string;
|
|
516
|
+
'META_VALUE': string;
|
|
517
|
+
}
|
|
518
|
+
export declare const wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
|
|
519
|
+
export interface iWp_Terms {
|
|
520
|
+
'term_id'?: number;
|
|
521
|
+
'name'?: string;
|
|
522
|
+
'slug'?: string;
|
|
523
|
+
'term_group'?: number;
|
|
524
|
+
}
|
|
525
|
+
interface iDefineWp_Terms {
|
|
526
|
+
'TERM_ID': string;
|
|
527
|
+
'NAME': string;
|
|
528
|
+
'SLUG': string;
|
|
529
|
+
'TERM_GROUP': string;
|
|
530
|
+
}
|
|
531
|
+
export declare const wp_terms: C6RestfulModel & iDefineWp_Terms;
|
|
532
|
+
export interface iWp_Usermeta {
|
|
533
|
+
'umeta_id'?: number;
|
|
534
|
+
'user_id'?: number;
|
|
535
|
+
'meta_key'?: string;
|
|
536
|
+
'meta_value'?: string;
|
|
537
|
+
}
|
|
538
|
+
interface iDefineWp_Usermeta {
|
|
539
|
+
'UMETA_ID': string;
|
|
540
|
+
'USER_ID': string;
|
|
541
|
+
'META_KEY': string;
|
|
542
|
+
'META_VALUE': string;
|
|
543
|
+
}
|
|
544
|
+
export declare const wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
|
|
545
|
+
export interface iWp_Users {
|
|
546
|
+
'ID'?: number;
|
|
547
|
+
'user_login'?: string;
|
|
548
|
+
'user_pass'?: string;
|
|
549
|
+
'user_nicename'?: string;
|
|
550
|
+
'user_email'?: string;
|
|
551
|
+
'user_url'?: string;
|
|
552
|
+
'user_registered'?: string;
|
|
553
|
+
'user_activation_key'?: string;
|
|
554
|
+
'user_status'?: number;
|
|
555
|
+
'display_name'?: string;
|
|
556
|
+
}
|
|
557
|
+
interface iDefineWp_Users {
|
|
558
|
+
'ID': string;
|
|
559
|
+
'USER_LOGIN': string;
|
|
560
|
+
'USER_PASS': string;
|
|
561
|
+
'USER_NICENAME': string;
|
|
562
|
+
'USER_EMAIL': string;
|
|
563
|
+
'USER_URL': string;
|
|
564
|
+
'USER_REGISTERED': string;
|
|
565
|
+
'USER_ACTIVATION_KEY': string;
|
|
566
|
+
'USER_STATUS': string;
|
|
567
|
+
'DISPLAY_NAME': string;
|
|
568
|
+
}
|
|
569
|
+
export declare const wp_users: C6RestfulModel & iDefineWp_Users;
|
|
570
|
+
export declare const TABLES: {
|
|
571
|
+
carbons: C6RestfulModel & iDefineCarbons;
|
|
572
|
+
comments: C6RestfulModel & iDefineComments;
|
|
573
|
+
documentation: C6RestfulModel & iDefineDocumentation;
|
|
574
|
+
feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
|
|
575
|
+
features: C6RestfulModel & iDefineFeatures;
|
|
576
|
+
group_references: C6RestfulModel & iDefineGroup_References;
|
|
577
|
+
groups: C6RestfulModel & iDefineGroups;
|
|
578
|
+
history_logs: C6RestfulModel & iDefineHistory_Logs;
|
|
579
|
+
location_references: C6RestfulModel & iDefineLocation_References;
|
|
580
|
+
locations: C6RestfulModel & iDefineLocations;
|
|
581
|
+
photos: C6RestfulModel & iDefinePhotos;
|
|
582
|
+
reports: C6RestfulModel & iDefineReports;
|
|
583
|
+
user_followers: C6RestfulModel & iDefineUser_Followers;
|
|
584
|
+
user_groups: C6RestfulModel & iDefineUser_Groups;
|
|
585
|
+
user_messages: C6RestfulModel & iDefineUser_Messages;
|
|
586
|
+
user_sessions: C6RestfulModel & iDefineUser_Sessions;
|
|
587
|
+
user_tasks: C6RestfulModel & iDefineUser_Tasks;
|
|
588
|
+
users: C6RestfulModel & iDefineUsers;
|
|
589
|
+
wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
|
|
590
|
+
wp_comments: C6RestfulModel & iDefineWp_Comments;
|
|
591
|
+
wp_links: C6RestfulModel & iDefineWp_Links;
|
|
592
|
+
wp_options: C6RestfulModel & iDefineWp_Options;
|
|
593
|
+
wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
|
|
594
|
+
wp_posts: C6RestfulModel & iDefineWp_Posts;
|
|
595
|
+
wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
|
|
596
|
+
wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
|
|
597
|
+
wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
|
|
598
|
+
wp_terms: C6RestfulModel & iDefineWp_Terms;
|
|
599
|
+
wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
|
|
600
|
+
wp_users: C6RestfulModel & iDefineWp_Users;
|
|
601
|
+
};
|
|
602
|
+
export declare const C6: {
|
|
603
|
+
TABLES: {
|
|
604
|
+
[key: string]: (C6RestfulModel & {
|
|
605
|
+
[key: string]: any;
|
|
606
|
+
});
|
|
607
|
+
};
|
|
608
|
+
} & {
|
|
609
|
+
[key: string]: any;
|
|
610
|
+
};
|
|
611
|
+
export declare const COLUMNS: {
|
|
612
|
+
'carbon_carbons.entity_pk': string;
|
|
613
|
+
'carbon_carbons.entity_fk': string;
|
|
614
|
+
'carbon_carbons.entity_tag': string;
|
|
615
|
+
'carbon_comments.parent_id': string;
|
|
616
|
+
'carbon_comments.comment_id': string;
|
|
617
|
+
'carbon_comments.user_id': string;
|
|
618
|
+
'carbon_comments.comment': string;
|
|
619
|
+
'carbon_documentation.documentation_uri': string;
|
|
620
|
+
'carbon_documentation.documentation_data': string;
|
|
621
|
+
'carbon_documentation.documentation_version': string;
|
|
622
|
+
'carbon_documentation.documentation_active': string;
|
|
623
|
+
'carbon_feature_group_references.feature_entity_id': string;
|
|
624
|
+
'carbon_feature_group_references.group_entity_id': string;
|
|
625
|
+
'carbon_features.feature_entity_id': string;
|
|
626
|
+
'carbon_features.feature_code': string;
|
|
627
|
+
'carbon_features.feature_creation_date': string;
|
|
628
|
+
'carbon_group_references.group_id': string;
|
|
629
|
+
'carbon_group_references.allowed_to_grant_group_id': string;
|
|
630
|
+
'carbon_groups.group_name': string;
|
|
631
|
+
'carbon_groups.entity_id': string;
|
|
632
|
+
'carbon_groups.created_by': string;
|
|
633
|
+
'carbon_groups.creation_date': string;
|
|
634
|
+
'carbon_history_logs.history_uuid': string;
|
|
635
|
+
'carbon_history_logs.history_table': string;
|
|
636
|
+
'carbon_history_logs.history_type': string;
|
|
637
|
+
'carbon_history_logs.history_data': string;
|
|
638
|
+
'carbon_history_logs.history_original_query': string;
|
|
639
|
+
'carbon_history_logs.history_time': string;
|
|
640
|
+
'carbon_location_references.entity_reference': string;
|
|
641
|
+
'carbon_location_references.location_reference': string;
|
|
642
|
+
'carbon_location_references.location_time': string;
|
|
643
|
+
'carbon_locations.entity_id': string;
|
|
644
|
+
'carbon_locations.latitude': string;
|
|
645
|
+
'carbon_locations.longitude': string;
|
|
646
|
+
'carbon_locations.street': string;
|
|
647
|
+
'carbon_locations.city': string;
|
|
648
|
+
'carbon_locations.state': string;
|
|
649
|
+
'carbon_locations.elevation': string;
|
|
650
|
+
'carbon_locations.zip': string;
|
|
651
|
+
'carbon_photos.parent_id': string;
|
|
652
|
+
'carbon_photos.photo_id': string;
|
|
653
|
+
'carbon_photos.user_id': string;
|
|
654
|
+
'carbon_photos.photo_path': string;
|
|
655
|
+
'carbon_photos.photo_description': string;
|
|
656
|
+
'carbon_reports.log_level': string;
|
|
657
|
+
'carbon_reports.report': string;
|
|
658
|
+
'carbon_reports.date': string;
|
|
659
|
+
'carbon_reports.call_trace': string;
|
|
660
|
+
'carbon_user_followers.follower_table_id': string;
|
|
661
|
+
'carbon_user_followers.follows_user_id': string;
|
|
662
|
+
'carbon_user_followers.user_id': string;
|
|
663
|
+
'carbon_user_groups.group_id': string;
|
|
664
|
+
'carbon_user_groups.user_id': string;
|
|
665
|
+
'carbon_user_messages.message_id': string;
|
|
666
|
+
'carbon_user_messages.from_user_id': string;
|
|
667
|
+
'carbon_user_messages.to_user_id': string;
|
|
668
|
+
'carbon_user_messages.message': string;
|
|
669
|
+
'carbon_user_messages.message_read': string;
|
|
670
|
+
'carbon_user_messages.creation_date': string;
|
|
671
|
+
'carbon_user_sessions.user_id': string;
|
|
672
|
+
'carbon_user_sessions.user_ip': string;
|
|
673
|
+
'carbon_user_sessions.session_id': string;
|
|
674
|
+
'carbon_user_sessions.session_expires': string;
|
|
675
|
+
'carbon_user_sessions.session_data': string;
|
|
676
|
+
'carbon_user_sessions.user_online_status': string;
|
|
677
|
+
'carbon_user_tasks.task_id': string;
|
|
678
|
+
'carbon_user_tasks.user_id': string;
|
|
679
|
+
'carbon_user_tasks.from_id': string;
|
|
680
|
+
'carbon_user_tasks.task_name': string;
|
|
681
|
+
'carbon_user_tasks.task_description': string;
|
|
682
|
+
'carbon_user_tasks.percent_complete': string;
|
|
683
|
+
'carbon_user_tasks.start_date': string;
|
|
684
|
+
'carbon_user_tasks.end_date': string;
|
|
685
|
+
'carbon_users.user_username': string;
|
|
686
|
+
'carbon_users.user_password': string;
|
|
687
|
+
'carbon_users.user_id': string;
|
|
688
|
+
'carbon_users.user_type': string;
|
|
689
|
+
'carbon_users.user_sport': string;
|
|
690
|
+
'carbon_users.user_session_id': string;
|
|
691
|
+
'carbon_users.user_facebook_id': string;
|
|
692
|
+
'carbon_users.user_first_name': string;
|
|
693
|
+
'carbon_users.user_last_name': string;
|
|
694
|
+
'carbon_users.user_profile_pic': string;
|
|
695
|
+
'carbon_users.user_profile_uri': string;
|
|
696
|
+
'carbon_users.user_cover_photo': string;
|
|
697
|
+
'carbon_users.user_birthday': string;
|
|
698
|
+
'carbon_users.user_gender': string;
|
|
699
|
+
'carbon_users.user_about_me': string;
|
|
700
|
+
'carbon_users.user_rank': string;
|
|
701
|
+
'carbon_users.user_email': string;
|
|
702
|
+
'carbon_users.user_email_code': string;
|
|
703
|
+
'carbon_users.user_email_confirmed': string;
|
|
704
|
+
'carbon_users.user_generated_string': string;
|
|
705
|
+
'carbon_users.user_membership': string;
|
|
706
|
+
'carbon_users.user_deactivated': string;
|
|
707
|
+
'carbon_users.user_last_login': string;
|
|
708
|
+
'carbon_users.user_ip': string;
|
|
709
|
+
'carbon_users.user_education_history': string;
|
|
710
|
+
'carbon_users.user_location': string;
|
|
711
|
+
'carbon_users.user_creation_date': string;
|
|
712
|
+
'carbon_wp_commentmeta.meta_id': string;
|
|
713
|
+
'carbon_wp_commentmeta.comment_id': string;
|
|
714
|
+
'carbon_wp_commentmeta.meta_key': string;
|
|
715
|
+
'carbon_wp_commentmeta.meta_value': string;
|
|
716
|
+
'carbon_wp_comments.comment_ID': string;
|
|
717
|
+
'carbon_wp_comments.comment_post_ID': string;
|
|
718
|
+
'carbon_wp_comments.comment_author': string;
|
|
719
|
+
'carbon_wp_comments.comment_author_email': string;
|
|
720
|
+
'carbon_wp_comments.comment_author_url': string;
|
|
721
|
+
'carbon_wp_comments.comment_author_IP': string;
|
|
722
|
+
'carbon_wp_comments.comment_date': string;
|
|
723
|
+
'carbon_wp_comments.comment_date_gmt': string;
|
|
724
|
+
'carbon_wp_comments.comment_content': string;
|
|
725
|
+
'carbon_wp_comments.comment_karma': string;
|
|
726
|
+
'carbon_wp_comments.comment_approved': string;
|
|
727
|
+
'carbon_wp_comments.comment_agent': string;
|
|
728
|
+
'carbon_wp_comments.comment_type': string;
|
|
729
|
+
'carbon_wp_comments.comment_parent': string;
|
|
730
|
+
'carbon_wp_comments.user_id': string;
|
|
731
|
+
'carbon_wp_links.link_id': string;
|
|
732
|
+
'carbon_wp_links.link_url': string;
|
|
733
|
+
'carbon_wp_links.link_name': string;
|
|
734
|
+
'carbon_wp_links.link_image': string;
|
|
735
|
+
'carbon_wp_links.link_target': string;
|
|
736
|
+
'carbon_wp_links.link_description': string;
|
|
737
|
+
'carbon_wp_links.link_visible': string;
|
|
738
|
+
'carbon_wp_links.link_owner': string;
|
|
739
|
+
'carbon_wp_links.link_rating': string;
|
|
740
|
+
'carbon_wp_links.link_updated': string;
|
|
741
|
+
'carbon_wp_links.link_rel': string;
|
|
742
|
+
'carbon_wp_links.link_notes': string;
|
|
743
|
+
'carbon_wp_links.link_rss': string;
|
|
744
|
+
'carbon_wp_options.option_id': string;
|
|
745
|
+
'carbon_wp_options.option_name': string;
|
|
746
|
+
'carbon_wp_options.option_value': string;
|
|
747
|
+
'carbon_wp_options.autoload': string;
|
|
748
|
+
'carbon_wp_postmeta.meta_id': string;
|
|
749
|
+
'carbon_wp_postmeta.post_id': string;
|
|
750
|
+
'carbon_wp_postmeta.meta_key': string;
|
|
751
|
+
'carbon_wp_postmeta.meta_value': string;
|
|
752
|
+
'carbon_wp_posts.ID': string;
|
|
753
|
+
'carbon_wp_posts.post_author': string;
|
|
754
|
+
'carbon_wp_posts.post_date': string;
|
|
755
|
+
'carbon_wp_posts.post_date_gmt': string;
|
|
756
|
+
'carbon_wp_posts.post_content': string;
|
|
757
|
+
'carbon_wp_posts.post_title': string;
|
|
758
|
+
'carbon_wp_posts.post_excerpt': string;
|
|
759
|
+
'carbon_wp_posts.post_status': string;
|
|
760
|
+
'carbon_wp_posts.comment_status': string;
|
|
761
|
+
'carbon_wp_posts.ping_status': string;
|
|
762
|
+
'carbon_wp_posts.post_password': string;
|
|
763
|
+
'carbon_wp_posts.post_name': string;
|
|
764
|
+
'carbon_wp_posts.to_ping': string;
|
|
765
|
+
'carbon_wp_posts.pinged': string;
|
|
766
|
+
'carbon_wp_posts.post_modified': string;
|
|
767
|
+
'carbon_wp_posts.post_modified_gmt': string;
|
|
768
|
+
'carbon_wp_posts.post_content_filtered': string;
|
|
769
|
+
'carbon_wp_posts.post_parent': string;
|
|
770
|
+
'carbon_wp_posts.guid': string;
|
|
771
|
+
'carbon_wp_posts.menu_order': string;
|
|
772
|
+
'carbon_wp_posts.post_type': string;
|
|
773
|
+
'carbon_wp_posts.post_mime_type': string;
|
|
774
|
+
'carbon_wp_posts.comment_count': string;
|
|
775
|
+
'carbon_wp_term_relationships.object_id': string;
|
|
776
|
+
'carbon_wp_term_relationships.term_taxonomy_id': string;
|
|
777
|
+
'carbon_wp_term_relationships.term_order': string;
|
|
778
|
+
'carbon_wp_term_taxonomy.term_taxonomy_id': string;
|
|
779
|
+
'carbon_wp_term_taxonomy.term_id': string;
|
|
780
|
+
'carbon_wp_term_taxonomy.taxonomy': string;
|
|
781
|
+
'carbon_wp_term_taxonomy.description': string;
|
|
782
|
+
'carbon_wp_term_taxonomy.parent': string;
|
|
783
|
+
'carbon_wp_term_taxonomy.count': string;
|
|
784
|
+
'carbon_wp_termmeta.meta_id': string;
|
|
785
|
+
'carbon_wp_termmeta.term_id': string;
|
|
786
|
+
'carbon_wp_termmeta.meta_key': string;
|
|
787
|
+
'carbon_wp_termmeta.meta_value': string;
|
|
788
|
+
'carbon_wp_terms.term_id': string;
|
|
789
|
+
'carbon_wp_terms.name': string;
|
|
790
|
+
'carbon_wp_terms.slug': string;
|
|
791
|
+
'carbon_wp_terms.term_group': string;
|
|
792
|
+
'carbon_wp_usermeta.umeta_id': string;
|
|
793
|
+
'carbon_wp_usermeta.user_id': string;
|
|
794
|
+
'carbon_wp_usermeta.meta_key': string;
|
|
795
|
+
'carbon_wp_usermeta.meta_value': string;
|
|
796
|
+
'carbon_wp_users.ID': string;
|
|
797
|
+
'carbon_wp_users.user_login': string;
|
|
798
|
+
'carbon_wp_users.user_pass': string;
|
|
799
|
+
'carbon_wp_users.user_nicename': string;
|
|
800
|
+
'carbon_wp_users.user_email': string;
|
|
801
|
+
'carbon_wp_users.user_url': string;
|
|
802
|
+
'carbon_wp_users.user_registered': string;
|
|
803
|
+
'carbon_wp_users.user_activation_key': string;
|
|
804
|
+
'carbon_wp_users.user_status': string;
|
|
805
|
+
'carbon_wp_users.display_name': string;
|
|
806
|
+
};
|
|
807
|
+
export type RestTableInterfaces = iCarbons | iComments | iDocumentation | iFeature_Group_References | iFeatures | iGroup_References | iGroups | iHistory_Logs | iLocation_References | iLocations | iPhotos | iReports | 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;
|
|
808
|
+
export interface iRestfulObjectArrayTypes {
|
|
809
|
+
carbons: tStatefulApiData<iCarbons>;
|
|
810
|
+
comments: tStatefulApiData<iComments>;
|
|
811
|
+
documentation: tStatefulApiData<iDocumentation>;
|
|
812
|
+
feature_group_references: tStatefulApiData<iFeature_Group_References>;
|
|
813
|
+
features: tStatefulApiData<iFeatures>;
|
|
814
|
+
group_references: tStatefulApiData<iGroup_References>;
|
|
815
|
+
groups: tStatefulApiData<iGroups>;
|
|
816
|
+
history_logs: tStatefulApiData<iHistory_Logs>;
|
|
817
|
+
location_references: tStatefulApiData<iLocation_References>;
|
|
818
|
+
locations: tStatefulApiData<iLocations>;
|
|
819
|
+
photos: tStatefulApiData<iPhotos>;
|
|
820
|
+
reports: tStatefulApiData<iReports>;
|
|
821
|
+
user_followers: tStatefulApiData<iUser_Followers>;
|
|
822
|
+
user_groups: tStatefulApiData<iUser_Groups>;
|
|
823
|
+
user_messages: tStatefulApiData<iUser_Messages>;
|
|
824
|
+
user_sessions: tStatefulApiData<iUser_Sessions>;
|
|
825
|
+
user_tasks: tStatefulApiData<iUser_Tasks>;
|
|
826
|
+
users: tStatefulApiData<iUsers>;
|
|
827
|
+
wp_commentmeta: tStatefulApiData<iWp_Commentmeta>;
|
|
828
|
+
wp_comments: tStatefulApiData<iWp_Comments>;
|
|
829
|
+
wp_links: tStatefulApiData<iWp_Links>;
|
|
830
|
+
wp_options: tStatefulApiData<iWp_Options>;
|
|
831
|
+
wp_postmeta: tStatefulApiData<iWp_Postmeta>;
|
|
832
|
+
wp_posts: tStatefulApiData<iWp_Posts>;
|
|
833
|
+
wp_term_relationships: tStatefulApiData<iWp_Term_Relationships>;
|
|
834
|
+
wp_term_taxonomy: tStatefulApiData<iWp_Term_Taxonomy>;
|
|
835
|
+
wp_termmeta: tStatefulApiData<iWp_Termmeta>;
|
|
836
|
+
wp_terms: tStatefulApiData<iWp_Terms>;
|
|
837
|
+
wp_usermeta: tStatefulApiData<iWp_Usermeta>;
|
|
838
|
+
wp_users: tStatefulApiData<iWp_Users>;
|
|
839
|
+
}
|
|
840
|
+
export declare const initialRestfulObjectsState: iRestfulObjectArrayTypes;
|
|
841
|
+
export type tRestfulObjectArrayValues = iRestfulObjectArrayTypes[keyof iRestfulObjectArrayTypes];
|
|
842
|
+
export {};
|