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