@carbonorm/carbonreact 1.1.0 → 1.1.2

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 (99) hide show
  1. package/dist/{CarbonReact.d.ts → cjs/CarbonReact.d.ts} +0 -1
  2. package/dist/{index.cjs.css → cjs/index.css} +1 -1
  3. package/dist/{index.cjs.css.map → cjs/index.css.map} +1 -1
  4. package/dist/cjs/index.d.ts +52 -0
  5. package/dist/{index.cjs.js → cjs/index.js} +485 -402
  6. package/dist/cjs/index.js.map +1 -0
  7. package/dist/esm/CarbonReact.d.ts +31 -0
  8. package/dist/esm/components/Alert/Alert.d.ts +24 -0
  9. package/dist/esm/components/Errors/AccessDenied.d.ts +4 -0
  10. package/dist/esm/components/Errors/BackendThrowable.d.ts +1 -0
  11. package/dist/esm/components/Errors/ErrorHttpCode.d.ts +5 -0
  12. package/dist/esm/components/Errors/Localhost.d.ts +1 -0
  13. package/dist/esm/components/Errors/PageNotFound.d.ts +1 -0
  14. package/dist/esm/components/Loading/Loading.d.ts +9 -0
  15. package/dist/esm/components/Nest/Nest.d.ts +49 -0
  16. package/dist/esm/components/Popup/Popup.d.ts +9 -0
  17. package/dist/esm/hoc/GlobalHistory.d.ts +6 -0
  18. package/dist/esm/hoc/addValidSQL.d.ts +2 -0
  19. package/dist/esm/hoc/axiosInstance.d.ts +5 -0
  20. package/dist/esm/hoc/changed.d.ts +2 -0
  21. package/dist/esm/hoc/deleteRestfulObjectArrays.d.ts +2 -0
  22. package/dist/esm/hoc/getStyles.d.ts +7 -0
  23. package/dist/esm/hoc/hexToRgb.d.ts +1 -0
  24. package/dist/esm/hoc/isEdgeBrowser.d.ts +2 -0
  25. package/dist/esm/hoc/parseMultipleJson.d.ts +1 -0
  26. package/dist/esm/hoc/scrollIntoView.d.ts +1 -0
  27. package/dist/esm/hoc/setUrl.d.ts +1 -0
  28. package/dist/esm/hoc/updateRestfulObjectArrays.d.ts +17 -0
  29. package/dist/esm/hoc/uploadImage.d.ts +4 -0
  30. package/dist/esm/hoc/windowDimensions.d.ts +4 -0
  31. package/dist/{index.esm.css → esm/index.css} +1 -1
  32. package/dist/{index.esm.css.map → esm/index.css.map} +1 -1
  33. package/dist/esm/index.d.ts +52 -0
  34. package/dist/{index.esm.js → esm/index.js} +486 -403
  35. package/dist/esm/index.js.map +1 -0
  36. package/dist/esm/variables/C6.d.ts +1008 -0
  37. package/dist/esm/variables/isProduction.d.ts +2 -0
  38. package/dist/index.d.ts +1209 -50
  39. package/dist/umd/CarbonReact.d.ts +31 -0
  40. package/dist/umd/components/Alert/Alert.d.ts +24 -0
  41. package/dist/umd/components/Errors/AccessDenied.d.ts +4 -0
  42. package/dist/umd/components/Errors/BackendThrowable.d.ts +1 -0
  43. package/dist/umd/components/Errors/ErrorHttpCode.d.ts +5 -0
  44. package/dist/umd/components/Errors/Localhost.d.ts +1 -0
  45. package/dist/umd/components/Errors/PageNotFound.d.ts +1 -0
  46. package/dist/umd/components/Loading/Loading.d.ts +9 -0
  47. package/dist/umd/components/Nest/Nest.d.ts +49 -0
  48. package/dist/umd/components/Popup/Popup.d.ts +9 -0
  49. package/dist/umd/hoc/GlobalHistory.d.ts +6 -0
  50. package/dist/umd/hoc/addValidSQL.d.ts +2 -0
  51. package/dist/umd/hoc/axiosInstance.d.ts +5 -0
  52. package/dist/umd/hoc/changed.d.ts +2 -0
  53. package/dist/umd/hoc/deleteRestfulObjectArrays.d.ts +2 -0
  54. package/dist/umd/hoc/getStyles.d.ts +7 -0
  55. package/dist/umd/hoc/hexToRgb.d.ts +1 -0
  56. package/dist/umd/hoc/isEdgeBrowser.d.ts +2 -0
  57. package/dist/umd/hoc/parseMultipleJson.d.ts +1 -0
  58. package/dist/umd/hoc/scrollIntoView.d.ts +1 -0
  59. package/dist/umd/hoc/setUrl.d.ts +1 -0
  60. package/dist/umd/hoc/updateRestfulObjectArrays.d.ts +17 -0
  61. package/dist/umd/hoc/uploadImage.d.ts +4 -0
  62. package/dist/umd/hoc/windowDimensions.d.ts +4 -0
  63. package/dist/umd/index.css +13298 -0
  64. package/dist/umd/index.css.map +1 -0
  65. package/dist/umd/index.d.ts +52 -0
  66. package/dist/umd/index.js +4736 -0
  67. package/dist/umd/index.js.map +1 -0
  68. package/dist/umd/variables/C6.d.ts +1008 -0
  69. package/dist/umd/variables/isProduction.d.ts +2 -0
  70. package/package.json +7 -4
  71. package/src/CarbonReact.tsx +9 -9
  72. package/src/hoc/axiosInstance.tsx +1 -1
  73. package/dist/index.cjs.js.map +0 -1
  74. package/dist/index.esm.js.map +0 -1
  75. /package/dist/{components → cjs/components}/Alert/Alert.d.ts +0 -0
  76. /package/dist/{components → cjs/components}/Errors/AccessDenied.d.ts +0 -0
  77. /package/dist/{components → cjs/components}/Errors/BackendThrowable.d.ts +0 -0
  78. /package/dist/{components → cjs/components}/Errors/ErrorHttpCode.d.ts +0 -0
  79. /package/dist/{components → cjs/components}/Errors/Localhost.d.ts +0 -0
  80. /package/dist/{components → cjs/components}/Errors/PageNotFound.d.ts +0 -0
  81. /package/dist/{components → cjs/components}/Loading/Loading.d.ts +0 -0
  82. /package/dist/{components → cjs/components}/Nest/Nest.d.ts +0 -0
  83. /package/dist/{components → cjs/components}/Popup/Popup.d.ts +0 -0
  84. /package/dist/{hoc → cjs/hoc}/GlobalHistory.d.ts +0 -0
  85. /package/dist/{hoc → cjs/hoc}/addValidSQL.d.ts +0 -0
  86. /package/dist/{hoc → cjs/hoc}/axiosInstance.d.ts +0 -0
  87. /package/dist/{hoc → cjs/hoc}/changed.d.ts +0 -0
  88. /package/dist/{hoc → cjs/hoc}/deleteRestfulObjectArrays.d.ts +0 -0
  89. /package/dist/{hoc → cjs/hoc}/getStyles.d.ts +0 -0
  90. /package/dist/{hoc → cjs/hoc}/hexToRgb.d.ts +0 -0
  91. /package/dist/{hoc → cjs/hoc}/isEdgeBrowser.d.ts +0 -0
  92. /package/dist/{hoc → cjs/hoc}/parseMultipleJson.d.ts +0 -0
  93. /package/dist/{hoc → cjs/hoc}/scrollIntoView.d.ts +0 -0
  94. /package/dist/{hoc → cjs/hoc}/setUrl.d.ts +0 -0
  95. /package/dist/{hoc → cjs/hoc}/updateRestfulObjectArrays.d.ts +0 -0
  96. /package/dist/{hoc → cjs/hoc}/uploadImage.d.ts +0 -0
  97. /package/dist/{hoc → cjs/hoc}/windowDimensions.d.ts +0 -0
  98. /package/dist/{variables → cjs/variables}/C6.d.ts +0 -0
  99. /package/dist/{variables → cjs/variables}/isProduction.d.ts +0 -0
package/dist/index.d.ts CHANGED
@@ -1,52 +1,1211 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import React, { ReactNode, ChangeEvent } from 'react';
3
+ import { iCarbons as iCarbons$1 } from 'variables/C6';
4
+ import { NavigateFunction } from 'react-router-dom';
5
+ import { AxiosResponse, AxiosInstance } from 'axios';
6
+ import { tRestfulObjectValues as tRestfulObjectValues$1, iCarbonORMState as iCarbonORMState$1, iRestfulObjectArrayTypes as iRestfulObjectArrayTypes$1 } from 'CarbonReact';
7
+ import BootstrapStyle from 'variables/bootstrap.module.css';
8
+ import DropInGamingStyles from 'style.module.css';
9
+
10
+ type tStatefulApiData<T> = T[] | undefined | null;
11
+ interface iRestfulObjectArrayTypes {
12
+ carbons: tStatefulApiData<iCarbons$1>;
13
+ }
14
+ type tRestfulObjectArrayKeys = keyof iRestfulObjectArrayTypes;
15
+ type tRestfulObjectArrayValues = iRestfulObjectArrayTypes[tRestfulObjectArrayKeys];
16
+ type tRestfulObjectValues = tRestfulObjectArrayValues[number];
17
+ interface iCarbonORMState extends iRestfulObjectArrayTypes {
18
+ websocketEvents: MessageEvent[];
19
+ websocketData: any[];
20
+ websocket?: WebSocket;
21
+ websocketMounted: boolean;
22
+ alert?: boolean;
23
+ alertsWaiting: any[];
24
+ backendThrowable: any[];
25
+ }
26
+ declare class CarbonReact<P = {}, S = {}> extends React.Component<{
27
+ children?: ReactNode | ReactNode[];
28
+ } & P, iCarbonORMState & S> {
29
+ static instance: CarbonReact;
30
+ static lastLocation: string;
31
+ static whyDidYouRender: boolean;
32
+ constructor(props: any);
33
+ websocketTimeout: number;
34
+ shouldComponentUpdate(nextProps: Readonly<any>, nextState: Readonly<iCarbonORMState>, _nextContext: any): boolean;
35
+ componentDidUpdate(_prevProps: Readonly<any>, _prevState: Readonly<iCarbonORMState>, _snapshot?: any): void;
36
+ render(): react_jsx_runtime.JSX.Element;
37
+ }
38
+
39
+ interface iAlertButtonOptions {
40
+ text: string;
41
+ value?: string;
42
+ className?: string;
43
+ color: "default" | "primary" | "secondary" | "inherit" | "danger" | "info" | "success" | "warning" | undefined;
44
+ }
45
+ declare function addAlert(props: iAlert): void;
46
+ interface iAlert {
47
+ title: string;
48
+ text: string;
49
+ component?: ReactNode;
50
+ icon?: "warning" | "error" | "success" | "info" | "question" | null;
51
+ buttons?: (iAlertButtonOptions)[] | undefined;
52
+ dangerMode?: true;
53
+ then?: (value: string | undefined) => void;
54
+ timeout?: number;
55
+ footerText?: string;
56
+ intercept?: boolean;
57
+ backendThrowable?: {
58
+ [key: string]: any;
59
+ };
60
+ }
61
+ declare function Alert(): react_jsx_runtime.JSX.Element | null;
62
+
63
+ declare function AccessDenied({ children }: {
64
+ children?: React.ReactNode;
65
+ }): react_jsx_runtime.JSX.Element;
66
+
67
+ declare function BackendThrowable(): react_jsx_runtime.JSX.Element;
68
+
69
+ declare function ErrorHttpCode({ code, title, message }: {
70
+ code: string;
71
+ title: string;
72
+ message: string;
73
+ }): react_jsx_runtime.JSX.Element;
74
+
75
+ declare function Localhost(): react_jsx_runtime.JSX.Element;
76
+
77
+ declare function PageNotFound(): react_jsx_runtime.JSX.Element;
78
+
79
+ interface iLoading {
80
+ lineHeight?: number;
81
+ count?: number;
82
+ children?: ReactNode;
83
+ message: string | undefined;
84
+ }
85
+ declare function Loading(props: iLoading): react_jsx_runtime.JSX.Element;
86
+
87
+ declare const range: (n: any) => number[];
88
+ interface iTwoD {
89
+ max: number;
90
+ x: number | null;
91
+ y: number | null;
92
+ }
93
+ interface iTwoDAnimated extends iTwoD {
94
+ ya: number;
95
+ xa: number;
96
+ }
97
+ type NestProps = typeof Nest.defaultProps & {
98
+ children?: any;
99
+ position: "relative" | "-moz-initial" | "inherit" | "initial" | "revert" | "unset" | "-webkit-sticky" | "absolute" | "fixed" | "static" | "sticky";
100
+ };
101
+ declare class Nest extends React.Component<NestProps, {}> {
102
+ static defaultProps: {
103
+ backgroundColor: string;
104
+ display: string;
105
+ top: number;
106
+ left: number;
107
+ zIndex: number;
108
+ count: number;
109
+ opacity: number;
110
+ overflow: string;
111
+ color: string;
112
+ pointColor: string;
113
+ position: string;
114
+ };
115
+ canvas?: HTMLCanvasElement;
116
+ all: Array<iTwoDAnimated | iTwoD>;
117
+ points?: Array<iTwoDAnimated>;
118
+ current: iTwoD;
119
+ constructor(props: any);
120
+ canvasContext?: CanvasRenderingContext2D;
121
+ componentDidMount(): void;
122
+ randomPoints: () => {
123
+ x: number;
124
+ y: number;
125
+ xa: number;
126
+ ya: number;
127
+ max: number;
128
+ }[];
129
+ tid: number;
130
+ drawCanvas: () => void;
131
+ destroy(): void;
132
+ render(): react_jsx_runtime.JSX.Element;
133
+ }
134
+
135
+ interface iPopupProperties {
136
+ open?: boolean;
137
+ handleClose: () => any;
138
+ children: any;
139
+ minWidth?: string;
140
+ maxWidth?: string;
141
+ }
142
+ declare function Popup({ open, handleClose, children, maxWidth, }: iPopupProperties): react_jsx_runtime.JSX.Element | null;
143
+
144
+ declare let globalNavigate: NavigateFunction;
145
+ declare const GlobalHistory: {
146
+ (): null;
147
+ displayName: string;
148
+ };
149
+
150
+ declare function export_default$1(sql: any): void;
151
+
152
+ declare function HandleResponseCodes(data: any): void;
153
+ declare function setCookies(cookies: string[], req?: AxiosResponse | undefined): void;
154
+ declare const axiosInstance: AxiosInstance;
155
+
156
+ declare const changed: (name: string, context: "state" | "props", old: any, v: any) => void;
157
+
158
+ declare function deleteRestfulObjectArrays<ObjectType extends tRestfulObjectValues$1>(dataOrCallback: ((prev: Readonly<iCarbonORMState$1>) => ObjectType[]) | ObjectType[], stateKey: keyof iRestfulObjectArrayTypes$1, uniqueObjectId: keyof ObjectType, callback?: () => void): void;
159
+
160
+ declare const getRootStyleValue: (property?: string) => string;
161
+ type tBootstrap = typeof BootstrapStyle;
162
+ type tDropInGaming = typeof DropInGamingStyles;
163
+ declare function getStyles<iCSS extends {}>(overrides?: iCSS): tBootstrap & tDropInGaming & iCSS;
164
+
165
+ declare function export_default(hex: any): string;
166
+
167
+ declare const isEdgeBrowser: boolean;
168
+
169
+ declare function parseMultipleJson(ss: string | any): any[];
170
+
171
+ declare function ScrollIntoViewDirective(el: Element): void;
172
+
173
+ declare function setUrl(): void;
174
+
175
+ declare enum eUpdateInsertMethod {
176
+ REPLACE = 0,
177
+ FIRST = 1,
178
+ LAST = 2
179
+ }
1
180
  /**
2
- * @file Automatically generated by barrelsby.
181
+ *
182
+ * merged with existing objects.uniqueObjectId || {}.
183
+ * @param dataOrCallback
184
+ * @param uniqueObjectId - the uniqueObjectId of the object to update; typically the primary key of the table.
185
+ * @param stateKey -
186
+ * @param insertUpdateOrder
187
+ * @param callback - if you want to do something with the updated state, you can pass a callback here. Run as the second
188
+ * parameter of setState.
3
189
  */
4
- export { default as CarbonReact } from "./CarbonReact";
5
- export * from "./CarbonReact";
6
- export { default as Alert } from "./components/Alert/Alert";
7
- export * from "./components/Alert/Alert";
8
- export { default as AccessDenied } from "./components/Errors/AccessDenied";
9
- export * from "./components/Errors/AccessDenied";
10
- export { default as BackendThrowable } from "./components/Errors/BackendThrowable";
11
- export * from "./components/Errors/BackendThrowable";
12
- export { default as ErrorHttpCode } from "./components/Errors/ErrorHttpCode";
13
- export * from "./components/Errors/ErrorHttpCode";
14
- export { default as Localhost } from "./components/Errors/Localhost";
15
- export * from "./components/Errors/Localhost";
16
- export { default as PageNotFound } from "./components/Errors/PageNotFound";
17
- export * from "./components/Errors/PageNotFound";
18
- export { default as Loading } from "./components/Loading/Loading";
19
- export * from "./components/Loading/Loading";
20
- export { default as Nest } from "./components/Nest/Nest";
21
- export * from "./components/Nest/Nest";
22
- export { default as Popup } from "./components/Popup/Popup";
23
- export * from "./components/Popup/Popup";
24
- export * from "./hoc/GlobalHistory";
25
- export { default as addValidSQL } from "./hoc/addValidSQL";
26
- export * from "./hoc/addValidSQL";
27
- export { default as axiosInstance } from "./hoc/axiosInstance";
28
- export * from "./hoc/axiosInstance";
29
- export { default as changed } from "./hoc/changed";
30
- export * from "./hoc/changed";
31
- export { default as deleteRestfulObjectArrays } from "./hoc/deleteRestfulObjectArrays";
32
- export * from "./hoc/deleteRestfulObjectArrays";
33
- export { default as getStyles } from "./hoc/getStyles";
34
- export * from "./hoc/getStyles";
35
- export { default as hexToRgb } from "./hoc/hexToRgb";
36
- export * from "./hoc/hexToRgb";
37
- export { default as isEdgeBrowser } from "./hoc/isEdgeBrowser";
38
- export * from "./hoc/isEdgeBrowser";
39
- export * from "./hoc/parseMultipleJson";
40
- export { default as scrollIntoView } from "./hoc/scrollIntoView";
41
- export * from "./hoc/scrollIntoView";
42
- export { default as setUrl } from "./hoc/setUrl";
43
- export * from "./hoc/setUrl";
44
- export { default as updateRestfulObjectArrays } from "./hoc/updateRestfulObjectArrays";
45
- export * from "./hoc/updateRestfulObjectArrays";
46
- export { default as uploadImage } from "./hoc/uploadImage";
47
- export * from "./hoc/uploadImage";
48
- export { default as windowDimensions } from "./hoc/windowDimensions";
49
- export * from "./hoc/windowDimensions";
50
- export * from "./variables/C6";
51
- export { default as isProduction } from "./variables/isProduction";
52
- export * from "./variables/isProduction";
190
+ declare function updateRestfulObjectArray<ObjectType extends tRestfulObjectValues$1>(dataOrCallback: ((prev: Readonly<iCarbonORMState$1>) => ObjectType[]) | ObjectType[], uniqueObjectId: keyof ObjectType, stateKey: keyof iRestfulObjectArrayTypes$1, insertUpdateOrder?: eUpdateInsertMethod, callback?: () => void): void;
191
+
192
+ declare function toDataURL(src: string, fileType: string, callback: (dataUriEncoded: string) => void): Promise<void>;
193
+ declare function uploadImageChange(event: ChangeEvent<HTMLInputElement>, uploadCallback: ((imageDataUri: string) => void)): void;
194
+ declare function uploadImage(uploadCallback: (dataUriBase64: string) => void): () => void;
195
+
196
+ declare function useWindowDimensions(): {
197
+ width: number;
198
+ height: number;
199
+ };
200
+
201
+ interface stringMap {
202
+ [key: string]: string;
203
+ }
204
+ interface stringNumberMap {
205
+ [key: string]: string | number;
206
+ }
207
+ interface RegExpMap {
208
+ [key: string]: RegExp | RegExpMap;
209
+ }
210
+ interface complexMap {
211
+ [key: string]: stringMap | stringNumberMap | stringMap[] | RegExpMap;
212
+ }
213
+ interface iTypeValidation {
214
+ MYSQL_TYPE: string;
215
+ MAX_LENGTH: string;
216
+ AUTO_INCREMENT: boolean;
217
+ SKIP_COLUMN_IN_POST: boolean;
218
+ }
219
+ 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';
220
+ 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';
221
+ interface C6RestfulModel {
222
+ TABLE_NAME: RestShortTableNames;
223
+ PRIMARY: string[];
224
+ COLUMNS: stringMap;
225
+ REGEX_VALIDATION: RegExpMap;
226
+ TYPE_VALIDATION: {
227
+ [key: string]: iTypeValidation;
228
+ };
229
+ }
230
+ interface iCarbons {
231
+ 'entity_pk'?: string;
232
+ 'entity_fk'?: string;
233
+ 'entity_tag'?: string;
234
+ }
235
+ interface iDefineCarbons {
236
+ 'ENTITY_PK': string;
237
+ 'ENTITY_FK': string;
238
+ 'ENTITY_TAG': string;
239
+ }
240
+ declare const carbons: C6RestfulModel & iDefineCarbons;
241
+ interface iComments {
242
+ 'parent_id'?: string;
243
+ 'comment_id'?: string;
244
+ 'user_id'?: string;
245
+ 'comment'?: string;
246
+ }
247
+ interface iDefineComments {
248
+ 'PARENT_ID': string;
249
+ 'COMMENT_ID': string;
250
+ 'USER_ID': string;
251
+ 'COMMENT': string;
252
+ }
253
+ declare const comments: C6RestfulModel & iDefineComments;
254
+ interface iDocumentation {
255
+ 'documentation_uri'?: string;
256
+ 'documentation_data'?: string;
257
+ 'documentation_version'?: string;
258
+ 'documentation_active'?: number;
259
+ }
260
+ interface iDefineDocumentation {
261
+ 'DOCUMENTATION_URI': string;
262
+ 'DOCUMENTATION_DATA': string;
263
+ 'DOCUMENTATION_VERSION': string;
264
+ 'DOCUMENTATION_ACTIVE': string;
265
+ }
266
+ declare const documentation: C6RestfulModel & iDefineDocumentation;
267
+ interface iFeature_Group_References {
268
+ 'feature_entity_id'?: string;
269
+ 'group_entity_id'?: string;
270
+ }
271
+ interface iDefineFeature_Group_References {
272
+ 'FEATURE_ENTITY_ID': string;
273
+ 'GROUP_ENTITY_ID': string;
274
+ }
275
+ declare const feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
276
+ interface iFeatures {
277
+ 'feature_entity_id'?: string;
278
+ 'feature_code'?: string;
279
+ 'feature_creation_date'?: string;
280
+ }
281
+ interface iDefineFeatures {
282
+ 'FEATURE_ENTITY_ID': string;
283
+ 'FEATURE_CODE': string;
284
+ 'FEATURE_CREATION_DATE': string;
285
+ }
286
+ declare const features: C6RestfulModel & iDefineFeatures;
287
+ interface iGroup_References {
288
+ 'group_id'?: string;
289
+ 'allowed_to_grant_group_id'?: string;
290
+ }
291
+ interface iDefineGroup_References {
292
+ 'GROUP_ID': string;
293
+ 'ALLOWED_TO_GRANT_GROUP_ID': string;
294
+ }
295
+ declare const group_references: C6RestfulModel & iDefineGroup_References;
296
+ interface iGroups {
297
+ 'group_name'?: string;
298
+ 'entity_id'?: string;
299
+ 'created_by'?: string;
300
+ 'creation_date'?: string;
301
+ }
302
+ interface iDefineGroups {
303
+ 'GROUP_NAME': string;
304
+ 'ENTITY_ID': string;
305
+ 'CREATED_BY': string;
306
+ 'CREATION_DATE': string;
307
+ }
308
+ declare const groups: C6RestfulModel & iDefineGroups;
309
+ interface iHistory_Logs {
310
+ 'history_uuid'?: string;
311
+ 'history_table'?: string;
312
+ 'history_type'?: string;
313
+ 'history_data'?: string;
314
+ 'history_original_query'?: string;
315
+ 'history_time'?: string;
316
+ }
317
+ interface iDefineHistory_Logs {
318
+ 'HISTORY_UUID': string;
319
+ 'HISTORY_TABLE': string;
320
+ 'HISTORY_TYPE': string;
321
+ 'HISTORY_DATA': string;
322
+ 'HISTORY_ORIGINAL_QUERY': string;
323
+ 'HISTORY_TIME': string;
324
+ }
325
+ declare const history_logs: C6RestfulModel & iDefineHistory_Logs;
326
+ interface iLocation_References {
327
+ 'entity_reference'?: string;
328
+ 'location_reference'?: string;
329
+ 'location_time'?: string;
330
+ }
331
+ interface iDefineLocation_References {
332
+ 'ENTITY_REFERENCE': string;
333
+ 'LOCATION_REFERENCE': string;
334
+ 'LOCATION_TIME': string;
335
+ }
336
+ declare const location_references: C6RestfulModel & iDefineLocation_References;
337
+ interface iLocations {
338
+ 'entity_id'?: string;
339
+ 'latitude'?: string;
340
+ 'longitude'?: string;
341
+ 'street'?: string;
342
+ 'city'?: string;
343
+ 'state'?: string;
344
+ 'elevation'?: string;
345
+ 'zip'?: number;
346
+ }
347
+ interface iDefineLocations {
348
+ 'ENTITY_ID': string;
349
+ 'LATITUDE': string;
350
+ 'LONGITUDE': string;
351
+ 'STREET': string;
352
+ 'CITY': string;
353
+ 'STATE': string;
354
+ 'ELEVATION': string;
355
+ 'ZIP': string;
356
+ }
357
+ declare const locations: C6RestfulModel & iDefineLocations;
358
+ interface iPhotos {
359
+ 'parent_id'?: string;
360
+ 'photo_id'?: string;
361
+ 'user_id'?: string;
362
+ 'photo_path'?: string;
363
+ 'photo_description'?: string;
364
+ }
365
+ interface iDefinePhotos {
366
+ 'PARENT_ID': string;
367
+ 'PHOTO_ID': string;
368
+ 'USER_ID': string;
369
+ 'PHOTO_PATH': string;
370
+ 'PHOTO_DESCRIPTION': string;
371
+ }
372
+ declare const photos: C6RestfulModel & iDefinePhotos;
373
+ interface iReports {
374
+ 'log_level'?: string;
375
+ 'report'?: string;
376
+ 'date'?: string;
377
+ 'call_trace'?: string;
378
+ }
379
+ interface iDefineReports {
380
+ 'LOG_LEVEL': string;
381
+ 'REPORT': string;
382
+ 'DATE': string;
383
+ 'CALL_TRACE': string;
384
+ }
385
+ declare const reports: C6RestfulModel & iDefineReports;
386
+ interface iSessions {
387
+ 'user_id'?: string;
388
+ 'user_ip'?: string;
389
+ 'session_id'?: string;
390
+ 'session_expires'?: string;
391
+ 'session_data'?: string;
392
+ 'user_online_status'?: number;
393
+ }
394
+ interface iDefineSessions {
395
+ 'USER_ID': string;
396
+ 'USER_IP': string;
397
+ 'SESSION_ID': string;
398
+ 'SESSION_EXPIRES': string;
399
+ 'SESSION_DATA': string;
400
+ 'USER_ONLINE_STATUS': string;
401
+ }
402
+ declare const sessions: C6RestfulModel & iDefineSessions;
403
+ interface iUser_Followers {
404
+ 'follower_table_id'?: string;
405
+ 'follows_user_id'?: string;
406
+ 'user_id'?: string;
407
+ }
408
+ interface iDefineUser_Followers {
409
+ 'FOLLOWER_TABLE_ID': string;
410
+ 'FOLLOWS_USER_ID': string;
411
+ 'USER_ID': string;
412
+ }
413
+ declare const user_followers: C6RestfulModel & iDefineUser_Followers;
414
+ interface iUser_Groups {
415
+ 'group_id'?: string;
416
+ 'user_id'?: string;
417
+ }
418
+ interface iDefineUser_Groups {
419
+ 'GROUP_ID': string;
420
+ 'USER_ID': string;
421
+ }
422
+ declare const user_groups: C6RestfulModel & iDefineUser_Groups;
423
+ interface iUser_Messages {
424
+ 'message_id'?: string;
425
+ 'from_user_id'?: string;
426
+ 'to_user_id'?: string;
427
+ 'message'?: string;
428
+ 'message_read'?: number;
429
+ 'creation_date'?: string;
430
+ }
431
+ interface iDefineUser_Messages {
432
+ 'MESSAGE_ID': string;
433
+ 'FROM_USER_ID': string;
434
+ 'TO_USER_ID': string;
435
+ 'MESSAGE': string;
436
+ 'MESSAGE_READ': string;
437
+ 'CREATION_DATE': string;
438
+ }
439
+ declare const user_messages: C6RestfulModel & iDefineUser_Messages;
440
+ interface iUser_Sessions {
441
+ 'user_id'?: string;
442
+ 'user_ip'?: string;
443
+ 'session_id'?: string;
444
+ 'session_expires'?: string;
445
+ 'session_data'?: string;
446
+ 'user_online_status'?: number;
447
+ }
448
+ interface iDefineUser_Sessions {
449
+ 'USER_ID': string;
450
+ 'USER_IP': string;
451
+ 'SESSION_ID': string;
452
+ 'SESSION_EXPIRES': string;
453
+ 'SESSION_DATA': string;
454
+ 'USER_ONLINE_STATUS': string;
455
+ }
456
+ declare const user_sessions: C6RestfulModel & iDefineUser_Sessions;
457
+ interface iUser_Tasks {
458
+ 'task_id'?: string;
459
+ 'user_id'?: string;
460
+ 'from_id'?: string;
461
+ 'task_name'?: string;
462
+ 'task_description'?: string;
463
+ 'percent_complete'?: number;
464
+ 'start_date'?: string;
465
+ 'end_date'?: string;
466
+ }
467
+ interface iDefineUser_Tasks {
468
+ 'TASK_ID': string;
469
+ 'USER_ID': string;
470
+ 'FROM_ID': string;
471
+ 'TASK_NAME': string;
472
+ 'TASK_DESCRIPTION': string;
473
+ 'PERCENT_COMPLETE': string;
474
+ 'START_DATE': string;
475
+ 'END_DATE': string;
476
+ }
477
+ declare const user_tasks: C6RestfulModel & iDefineUser_Tasks;
478
+ interface iUsers {
479
+ 'user_username'?: string;
480
+ 'user_password'?: string;
481
+ 'user_id'?: string;
482
+ 'user_type'?: string;
483
+ 'user_sport'?: string;
484
+ 'user_session_id'?: string;
485
+ 'user_facebook_id'?: string;
486
+ 'user_first_name'?: string;
487
+ 'user_last_name'?: string;
488
+ 'user_profile_pic'?: string;
489
+ 'user_profile_uri'?: string;
490
+ 'user_cover_photo'?: string;
491
+ 'user_birthday'?: string;
492
+ 'user_gender'?: string;
493
+ 'user_about_me'?: string;
494
+ 'user_rank'?: number;
495
+ 'user_email'?: string;
496
+ 'user_email_code'?: string;
497
+ 'user_email_confirmed'?: number;
498
+ 'user_generated_string'?: string;
499
+ 'user_membership'?: number;
500
+ 'user_deactivated'?: number;
501
+ 'user_last_login'?: string;
502
+ 'user_ip'?: string;
503
+ 'user_education_history'?: string;
504
+ 'user_location'?: string;
505
+ 'user_creation_date'?: string;
506
+ }
507
+ interface iDefineUsers {
508
+ 'USER_USERNAME': string;
509
+ 'USER_PASSWORD': string;
510
+ 'USER_ID': string;
511
+ 'USER_TYPE': string;
512
+ 'USER_SPORT': string;
513
+ 'USER_SESSION_ID': string;
514
+ 'USER_FACEBOOK_ID': string;
515
+ 'USER_FIRST_NAME': string;
516
+ 'USER_LAST_NAME': string;
517
+ 'USER_PROFILE_PIC': string;
518
+ 'USER_PROFILE_URI': string;
519
+ 'USER_COVER_PHOTO': string;
520
+ 'USER_BIRTHDAY': string;
521
+ 'USER_GENDER': string;
522
+ 'USER_ABOUT_ME': string;
523
+ 'USER_RANK': string;
524
+ 'USER_EMAIL': string;
525
+ 'USER_EMAIL_CODE': string;
526
+ 'USER_EMAIL_CONFIRMED': string;
527
+ 'USER_GENERATED_STRING': string;
528
+ 'USER_MEMBERSHIP': string;
529
+ 'USER_DEACTIVATED': string;
530
+ 'USER_LAST_LOGIN': string;
531
+ 'USER_IP': string;
532
+ 'USER_EDUCATION_HISTORY': string;
533
+ 'USER_LOCATION': string;
534
+ 'USER_CREATION_DATE': string;
535
+ }
536
+ declare const users: C6RestfulModel & iDefineUsers;
537
+ interface iWp_Commentmeta {
538
+ 'meta_id'?: number;
539
+ 'comment_id'?: number;
540
+ 'meta_key'?: string;
541
+ 'meta_value'?: string;
542
+ }
543
+ interface iDefineWp_Commentmeta {
544
+ 'META_ID': string;
545
+ 'COMMENT_ID': string;
546
+ 'META_KEY': string;
547
+ 'META_VALUE': string;
548
+ }
549
+ declare const wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
550
+ interface iWp_Comments {
551
+ 'comment_ID'?: number;
552
+ 'comment_post_ID'?: number;
553
+ 'comment_author'?: string;
554
+ 'comment_author_email'?: string;
555
+ 'comment_author_url'?: string;
556
+ 'comment_author_IP'?: string;
557
+ 'comment_date'?: string;
558
+ 'comment_date_gmt'?: string;
559
+ 'comment_content'?: string;
560
+ 'comment_karma'?: number;
561
+ 'comment_approved'?: string;
562
+ 'comment_agent'?: string;
563
+ 'comment_type'?: string;
564
+ 'comment_parent'?: number;
565
+ 'user_id'?: number;
566
+ }
567
+ interface iDefineWp_Comments {
568
+ 'COMMENT_ID': string;
569
+ 'COMMENT_POST_ID': string;
570
+ 'COMMENT_AUTHOR': string;
571
+ 'COMMENT_AUTHOR_EMAIL': string;
572
+ 'COMMENT_AUTHOR_URL': string;
573
+ 'COMMENT_AUTHOR_IP': string;
574
+ 'COMMENT_DATE': string;
575
+ 'COMMENT_DATE_GMT': string;
576
+ 'COMMENT_CONTENT': string;
577
+ 'COMMENT_KARMA': string;
578
+ 'COMMENT_APPROVED': string;
579
+ 'COMMENT_AGENT': string;
580
+ 'COMMENT_TYPE': string;
581
+ 'COMMENT_PARENT': string;
582
+ 'USER_ID': string;
583
+ }
584
+ declare const wp_comments: C6RestfulModel & iDefineWp_Comments;
585
+ interface iWp_Links {
586
+ 'link_id'?: number;
587
+ 'link_url'?: string;
588
+ 'link_name'?: string;
589
+ 'link_image'?: string;
590
+ 'link_target'?: string;
591
+ 'link_description'?: string;
592
+ 'link_visible'?: string;
593
+ 'link_owner'?: number;
594
+ 'link_rating'?: number;
595
+ 'link_updated'?: string;
596
+ 'link_rel'?: string;
597
+ 'link_notes'?: string;
598
+ 'link_rss'?: string;
599
+ }
600
+ interface iDefineWp_Links {
601
+ 'LINK_ID': string;
602
+ 'LINK_URL': string;
603
+ 'LINK_NAME': string;
604
+ 'LINK_IMAGE': string;
605
+ 'LINK_TARGET': string;
606
+ 'LINK_DESCRIPTION': string;
607
+ 'LINK_VISIBLE': string;
608
+ 'LINK_OWNER': string;
609
+ 'LINK_RATING': string;
610
+ 'LINK_UPDATED': string;
611
+ 'LINK_REL': string;
612
+ 'LINK_NOTES': string;
613
+ 'LINK_RSS': string;
614
+ }
615
+ declare const wp_links: C6RestfulModel & iDefineWp_Links;
616
+ interface iWp_Options {
617
+ 'option_id'?: number;
618
+ 'option_name'?: string;
619
+ 'option_value'?: string;
620
+ 'autoload'?: string;
621
+ }
622
+ interface iDefineWp_Options {
623
+ 'OPTION_ID': string;
624
+ 'OPTION_NAME': string;
625
+ 'OPTION_VALUE': string;
626
+ 'AUTOLOAD': string;
627
+ }
628
+ declare const wp_options: C6RestfulModel & iDefineWp_Options;
629
+ interface iWp_Postmeta {
630
+ 'meta_id'?: number;
631
+ 'post_id'?: number;
632
+ 'meta_key'?: string;
633
+ 'meta_value'?: string;
634
+ }
635
+ interface iDefineWp_Postmeta {
636
+ 'META_ID': string;
637
+ 'POST_ID': string;
638
+ 'META_KEY': string;
639
+ 'META_VALUE': string;
640
+ }
641
+ declare const wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
642
+ interface iWp_Posts {
643
+ 'ID'?: number;
644
+ 'post_author'?: number;
645
+ 'post_date'?: string;
646
+ 'post_date_gmt'?: string;
647
+ 'post_content'?: string;
648
+ 'post_title'?: string;
649
+ 'post_excerpt'?: string;
650
+ 'post_status'?: string;
651
+ 'comment_status'?: string;
652
+ 'ping_status'?: string;
653
+ 'post_password'?: string;
654
+ 'post_name'?: string;
655
+ 'to_ping'?: string;
656
+ 'pinged'?: string;
657
+ 'post_modified'?: string;
658
+ 'post_modified_gmt'?: string;
659
+ 'post_content_filtered'?: string;
660
+ 'post_parent'?: number;
661
+ 'guid'?: string;
662
+ 'menu_order'?: number;
663
+ 'post_type'?: string;
664
+ 'post_mime_type'?: string;
665
+ 'comment_count'?: number;
666
+ }
667
+ interface iDefineWp_Posts {
668
+ 'ID': string;
669
+ 'POST_AUTHOR': string;
670
+ 'POST_DATE': string;
671
+ 'POST_DATE_GMT': string;
672
+ 'POST_CONTENT': string;
673
+ 'POST_TITLE': string;
674
+ 'POST_EXCERPT': string;
675
+ 'POST_STATUS': string;
676
+ 'COMMENT_STATUS': string;
677
+ 'PING_STATUS': string;
678
+ 'POST_PASSWORD': string;
679
+ 'POST_NAME': string;
680
+ 'TO_PING': string;
681
+ 'PINGED': string;
682
+ 'POST_MODIFIED': string;
683
+ 'POST_MODIFIED_GMT': string;
684
+ 'POST_CONTENT_FILTERED': string;
685
+ 'POST_PARENT': string;
686
+ 'GUID': string;
687
+ 'MENU_ORDER': string;
688
+ 'POST_TYPE': string;
689
+ 'POST_MIME_TYPE': string;
690
+ 'COMMENT_COUNT': string;
691
+ }
692
+ declare const wp_posts: C6RestfulModel & iDefineWp_Posts;
693
+ interface iWp_Term_Relationships {
694
+ 'object_id'?: number;
695
+ 'term_taxonomy_id'?: number;
696
+ 'term_order'?: number;
697
+ }
698
+ interface iDefineWp_Term_Relationships {
699
+ 'OBJECT_ID': string;
700
+ 'TERM_TAXONOMY_ID': string;
701
+ 'TERM_ORDER': string;
702
+ }
703
+ declare const wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
704
+ interface iWp_Term_Taxonomy {
705
+ 'term_taxonomy_id'?: number;
706
+ 'term_id'?: number;
707
+ 'taxonomy'?: string;
708
+ 'description'?: string;
709
+ 'parent'?: number;
710
+ 'count'?: number;
711
+ }
712
+ interface iDefineWp_Term_Taxonomy {
713
+ 'TERM_TAXONOMY_ID': string;
714
+ 'TERM_ID': string;
715
+ 'TAXONOMY': string;
716
+ 'DESCRIPTION': string;
717
+ 'PARENT': string;
718
+ 'COUNT': string;
719
+ }
720
+ declare const wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
721
+ interface iWp_Termmeta {
722
+ 'meta_id'?: number;
723
+ 'term_id'?: number;
724
+ 'meta_key'?: string;
725
+ 'meta_value'?: string;
726
+ }
727
+ interface iDefineWp_Termmeta {
728
+ 'META_ID': string;
729
+ 'TERM_ID': string;
730
+ 'META_KEY': string;
731
+ 'META_VALUE': string;
732
+ }
733
+ declare const wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
734
+ interface iWp_Terms {
735
+ 'term_id'?: number;
736
+ 'name'?: string;
737
+ 'slug'?: string;
738
+ 'term_group'?: number;
739
+ }
740
+ interface iDefineWp_Terms {
741
+ 'TERM_ID': string;
742
+ 'NAME': string;
743
+ 'SLUG': string;
744
+ 'TERM_GROUP': string;
745
+ }
746
+ declare const wp_terms: C6RestfulModel & iDefineWp_Terms;
747
+ interface iWp_Usermeta {
748
+ 'umeta_id'?: number;
749
+ 'user_id'?: number;
750
+ 'meta_key'?: string;
751
+ 'meta_value'?: string;
752
+ }
753
+ interface iDefineWp_Usermeta {
754
+ 'UMETA_ID': string;
755
+ 'USER_ID': string;
756
+ 'META_KEY': string;
757
+ 'META_VALUE': string;
758
+ }
759
+ declare const wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
760
+ interface iWp_Users {
761
+ 'ID'?: number;
762
+ 'user_login'?: string;
763
+ 'user_pass'?: string;
764
+ 'user_nicename'?: string;
765
+ 'user_email'?: string;
766
+ 'user_url'?: string;
767
+ 'user_registered'?: string;
768
+ 'user_activation_key'?: string;
769
+ 'user_status'?: number;
770
+ 'display_name'?: string;
771
+ }
772
+ interface iDefineWp_Users {
773
+ 'ID': string;
774
+ 'USER_LOGIN': string;
775
+ 'USER_PASS': string;
776
+ 'USER_NICENAME': string;
777
+ 'USER_EMAIL': string;
778
+ 'USER_URL': string;
779
+ 'USER_REGISTERED': string;
780
+ 'USER_ACTIVATION_KEY': string;
781
+ 'USER_STATUS': string;
782
+ 'DISPLAY_NAME': string;
783
+ }
784
+ declare const wp_users: C6RestfulModel & iDefineWp_Users;
785
+ declare const TABLES: {
786
+ carbons: C6RestfulModel & iDefineCarbons;
787
+ comments: C6RestfulModel & iDefineComments;
788
+ documentation: C6RestfulModel & iDefineDocumentation;
789
+ feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
790
+ features: C6RestfulModel & iDefineFeatures;
791
+ group_references: C6RestfulModel & iDefineGroup_References;
792
+ groups: C6RestfulModel & iDefineGroups;
793
+ history_logs: C6RestfulModel & iDefineHistory_Logs;
794
+ location_references: C6RestfulModel & iDefineLocation_References;
795
+ locations: C6RestfulModel & iDefineLocations;
796
+ photos: C6RestfulModel & iDefinePhotos;
797
+ reports: C6RestfulModel & iDefineReports;
798
+ sessions: C6RestfulModel & iDefineSessions;
799
+ user_followers: C6RestfulModel & iDefineUser_Followers;
800
+ user_groups: C6RestfulModel & iDefineUser_Groups;
801
+ user_messages: C6RestfulModel & iDefineUser_Messages;
802
+ user_sessions: C6RestfulModel & iDefineUser_Sessions;
803
+ user_tasks: C6RestfulModel & iDefineUser_Tasks;
804
+ users: C6RestfulModel & iDefineUsers;
805
+ wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
806
+ wp_comments: C6RestfulModel & iDefineWp_Comments;
807
+ wp_links: C6RestfulModel & iDefineWp_Links;
808
+ wp_options: C6RestfulModel & iDefineWp_Options;
809
+ wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
810
+ wp_posts: C6RestfulModel & iDefineWp_Posts;
811
+ wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
812
+ wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
813
+ wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
814
+ wp_terms: C6RestfulModel & iDefineWp_Terms;
815
+ wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
816
+ wp_users: C6RestfulModel & iDefineWp_Users;
817
+ };
818
+ declare const C6: {
819
+ carbons: C6RestfulModel & iDefineCarbons;
820
+ comments: C6RestfulModel & iDefineComments;
821
+ documentation: C6RestfulModel & iDefineDocumentation;
822
+ feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
823
+ features: C6RestfulModel & iDefineFeatures;
824
+ group_references: C6RestfulModel & iDefineGroup_References;
825
+ groups: C6RestfulModel & iDefineGroups;
826
+ history_logs: C6RestfulModel & iDefineHistory_Logs;
827
+ location_references: C6RestfulModel & iDefineLocation_References;
828
+ locations: C6RestfulModel & iDefineLocations;
829
+ photos: C6RestfulModel & iDefinePhotos;
830
+ reports: C6RestfulModel & iDefineReports;
831
+ sessions: C6RestfulModel & iDefineSessions;
832
+ user_followers: C6RestfulModel & iDefineUser_Followers;
833
+ user_groups: C6RestfulModel & iDefineUser_Groups;
834
+ user_messages: C6RestfulModel & iDefineUser_Messages;
835
+ user_sessions: C6RestfulModel & iDefineUser_Sessions;
836
+ user_tasks: C6RestfulModel & iDefineUser_Tasks;
837
+ users: C6RestfulModel & iDefineUsers;
838
+ wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
839
+ wp_comments: C6RestfulModel & iDefineWp_Comments;
840
+ wp_links: C6RestfulModel & iDefineWp_Links;
841
+ wp_options: C6RestfulModel & iDefineWp_Options;
842
+ wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
843
+ wp_posts: C6RestfulModel & iDefineWp_Posts;
844
+ wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
845
+ wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
846
+ wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
847
+ wp_terms: C6RestfulModel & iDefineWp_Terms;
848
+ wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
849
+ wp_users: C6RestfulModel & iDefineWp_Users;
850
+ ADDDATE: string;
851
+ ADDTIME: string;
852
+ AS: string;
853
+ ASC: string;
854
+ BETWEEN: string;
855
+ CONCAT: string;
856
+ CONVERT_TZ: string;
857
+ COUNT: string;
858
+ COUNT_ALL: string;
859
+ CURRENT_DATE: string;
860
+ CURRENT_TIMESTAMP: string;
861
+ DAY: string;
862
+ DAY_HOUR: string;
863
+ DAY_MICROSECOND: string;
864
+ DAY_MINUTE: string;
865
+ DAY_SECOND: string;
866
+ DAYNAME: string;
867
+ DAYOFMONTH: string;
868
+ DAYOFWEEK: string;
869
+ DAYOFYEAR: string;
870
+ DATE: string;
871
+ DATE_ADD: string;
872
+ DATEDIFF: string;
873
+ DATE_SUB: string;
874
+ DATE_FORMAT: string;
875
+ DESC: string;
876
+ DISTINCT: string;
877
+ EXTRACT: string;
878
+ EQUAL: string;
879
+ EQUAL_NULL_SAFE: string;
880
+ FALSE: string;
881
+ FULL_OUTER: string;
882
+ FROM_DAYS: string;
883
+ FROM_UNIXTIME: string;
884
+ GET_FORMAT: string;
885
+ GREATER_THAN: string;
886
+ GROUP_BY: string;
887
+ GROUP_CONCAT: string;
888
+ GREATER_THAN_OR_EQUAL_TO: string;
889
+ HAVING: string;
890
+ HEX: string;
891
+ HOUR: string;
892
+ HOUR_MICROSECOND: string;
893
+ HOUR_SECOND: string;
894
+ HOUR_MINUTE: string;
895
+ IN: string;
896
+ IS: string;
897
+ IS_NOT: string;
898
+ INNER: string;
899
+ INTERVAL: string;
900
+ JOIN: string;
901
+ LEFT: string;
902
+ LEFT_OUTER: string;
903
+ LESS_THAN: string;
904
+ LESS_THAN_OR_EQUAL_TO: string;
905
+ LIKE: string;
906
+ LIMIT: string;
907
+ LOCALTIME: string;
908
+ LOCALTIMESTAMP: string;
909
+ MAKEDATE: string;
910
+ MAKETIME: string;
911
+ MONTHNAME: string;
912
+ MICROSECOND: string;
913
+ MINUTE: string;
914
+ MINUTE_MICROSECOND: string;
915
+ MINUTE_SECOND: string;
916
+ MIN: string;
917
+ MAX: string;
918
+ MONTH: string;
919
+ NOT_LIKE: string;
920
+ NOT_EQUAL: string;
921
+ NOT_IN: string;
922
+ NOW: string;
923
+ NULL: string;
924
+ ORDER: string;
925
+ PAGE: string;
926
+ PAGINATION: string;
927
+ RIGHT_OUTER: string;
928
+ SECOND: string;
929
+ SECOND_MICROSECOND: string;
930
+ SELECT: string;
931
+ STR_TO_DATE: string;
932
+ SUBDATE: string;
933
+ SUBTIME: string;
934
+ SUM: string;
935
+ SYSDATE: string;
936
+ TIME: string;
937
+ TIME_FORMAT: string;
938
+ TIME_TO_SEC: string;
939
+ TIMEDIFF: string;
940
+ TIMESTAMP: string;
941
+ TIMESTAMPADD: string;
942
+ TIMESTAMPDIFF: string;
943
+ TO_DAYS: string;
944
+ TO_SECONDS: string;
945
+ TRANSACTION_TIMESTAMP: string;
946
+ TRUE: string;
947
+ UNIX_TIMESTAMP: string;
948
+ UNKNOWN: string;
949
+ UPDATE: string;
950
+ UNHEX: string;
951
+ UTC_DATE: string;
952
+ UTC_TIME: string;
953
+ UTC_TIMESTAMP: string;
954
+ WHERE: string;
955
+ WEEKDAY: string;
956
+ WEEKOFYEAR: string;
957
+ YEARWEEK: string;
958
+ DEPENDANT_ON_ENTITY: string;
959
+ OPTIONS: string;
960
+ GET: string;
961
+ POST: string;
962
+ PUT: string;
963
+ REPLACE: string;
964
+ DELETE: string;
965
+ REST_REQUEST_PREPROCESS_CALLBACKS: string;
966
+ PREPROCESS: string;
967
+ REST_REQUEST_FINNISH_CALLBACKS: string;
968
+ FINISH: string;
969
+ VALIDATE_C6_ENTITY_ID_REGEX: string;
970
+ TABLES: {
971
+ carbons: C6RestfulModel & iDefineCarbons;
972
+ comments: C6RestfulModel & iDefineComments;
973
+ documentation: C6RestfulModel & iDefineDocumentation;
974
+ feature_group_references: C6RestfulModel & iDefineFeature_Group_References;
975
+ features: C6RestfulModel & iDefineFeatures;
976
+ group_references: C6RestfulModel & iDefineGroup_References;
977
+ groups: C6RestfulModel & iDefineGroups;
978
+ history_logs: C6RestfulModel & iDefineHistory_Logs;
979
+ location_references: C6RestfulModel & iDefineLocation_References;
980
+ locations: C6RestfulModel & iDefineLocations;
981
+ photos: C6RestfulModel & iDefinePhotos;
982
+ reports: C6RestfulModel & iDefineReports;
983
+ sessions: C6RestfulModel & iDefineSessions;
984
+ user_followers: C6RestfulModel & iDefineUser_Followers;
985
+ user_groups: C6RestfulModel & iDefineUser_Groups;
986
+ user_messages: C6RestfulModel & iDefineUser_Messages;
987
+ user_sessions: C6RestfulModel & iDefineUser_Sessions;
988
+ user_tasks: C6RestfulModel & iDefineUser_Tasks;
989
+ users: C6RestfulModel & iDefineUsers;
990
+ wp_commentmeta: C6RestfulModel & iDefineWp_Commentmeta;
991
+ wp_comments: C6RestfulModel & iDefineWp_Comments;
992
+ wp_links: C6RestfulModel & iDefineWp_Links;
993
+ wp_options: C6RestfulModel & iDefineWp_Options;
994
+ wp_postmeta: C6RestfulModel & iDefineWp_Postmeta;
995
+ wp_posts: C6RestfulModel & iDefineWp_Posts;
996
+ wp_term_relationships: C6RestfulModel & iDefineWp_Term_Relationships;
997
+ wp_term_taxonomy: C6RestfulModel & iDefineWp_Term_Taxonomy;
998
+ wp_termmeta: C6RestfulModel & iDefineWp_Termmeta;
999
+ wp_terms: C6RestfulModel & iDefineWp_Terms;
1000
+ wp_usermeta: C6RestfulModel & iDefineWp_Usermeta;
1001
+ wp_users: C6RestfulModel & iDefineWp_Users;
1002
+ };
1003
+ };
1004
+ declare const COLUMNS: {
1005
+ 'carbon_carbons.entity_pk': string;
1006
+ 'carbon_carbons.entity_fk': string;
1007
+ 'carbon_carbons.entity_tag': string;
1008
+ 'carbon_comments.parent_id': string;
1009
+ 'carbon_comments.comment_id': string;
1010
+ 'carbon_comments.user_id': string;
1011
+ 'carbon_comments.comment': string;
1012
+ 'carbon_documentation.documentation_uri': string;
1013
+ 'carbon_documentation.documentation_data': string;
1014
+ 'carbon_documentation.documentation_version': string;
1015
+ 'carbon_documentation.documentation_active': string;
1016
+ 'carbon_feature_group_references.feature_entity_id': string;
1017
+ 'carbon_feature_group_references.group_entity_id': string;
1018
+ 'carbon_features.feature_entity_id': string;
1019
+ 'carbon_features.feature_code': string;
1020
+ 'carbon_features.feature_creation_date': string;
1021
+ 'carbon_group_references.group_id': string;
1022
+ 'carbon_group_references.allowed_to_grant_group_id': string;
1023
+ 'carbon_groups.group_name': string;
1024
+ 'carbon_groups.entity_id': string;
1025
+ 'carbon_groups.created_by': string;
1026
+ 'carbon_groups.creation_date': string;
1027
+ 'carbon_history_logs.history_uuid': string;
1028
+ 'carbon_history_logs.history_table': string;
1029
+ 'carbon_history_logs.history_type': string;
1030
+ 'carbon_history_logs.history_data': string;
1031
+ 'carbon_history_logs.history_original_query': string;
1032
+ 'carbon_history_logs.history_time': string;
1033
+ 'carbon_location_references.entity_reference': string;
1034
+ 'carbon_location_references.location_reference': string;
1035
+ 'carbon_location_references.location_time': string;
1036
+ 'carbon_locations.entity_id': string;
1037
+ 'carbon_locations.latitude': string;
1038
+ 'carbon_locations.longitude': string;
1039
+ 'carbon_locations.street': string;
1040
+ 'carbon_locations.city': string;
1041
+ 'carbon_locations.state': string;
1042
+ 'carbon_locations.elevation': string;
1043
+ 'carbon_locations.zip': string;
1044
+ 'carbon_photos.parent_id': string;
1045
+ 'carbon_photos.photo_id': string;
1046
+ 'carbon_photos.user_id': string;
1047
+ 'carbon_photos.photo_path': string;
1048
+ 'carbon_photos.photo_description': string;
1049
+ 'carbon_reports.log_level': string;
1050
+ 'carbon_reports.report': string;
1051
+ 'carbon_reports.date': string;
1052
+ 'carbon_reports.call_trace': string;
1053
+ 'carbon_sessions.user_id': string;
1054
+ 'carbon_sessions.user_ip': string;
1055
+ 'carbon_sessions.session_id': string;
1056
+ 'carbon_sessions.session_expires': string;
1057
+ 'carbon_sessions.session_data': string;
1058
+ 'carbon_sessions.user_online_status': string;
1059
+ 'carbon_user_followers.follower_table_id': string;
1060
+ 'carbon_user_followers.follows_user_id': string;
1061
+ 'carbon_user_followers.user_id': string;
1062
+ 'carbon_user_groups.group_id': string;
1063
+ 'carbon_user_groups.user_id': string;
1064
+ 'carbon_user_messages.message_id': string;
1065
+ 'carbon_user_messages.from_user_id': string;
1066
+ 'carbon_user_messages.to_user_id': string;
1067
+ 'carbon_user_messages.message': string;
1068
+ 'carbon_user_messages.message_read': string;
1069
+ 'carbon_user_messages.creation_date': string;
1070
+ 'carbon_user_sessions.user_id': string;
1071
+ 'carbon_user_sessions.user_ip': string;
1072
+ 'carbon_user_sessions.session_id': string;
1073
+ 'carbon_user_sessions.session_expires': string;
1074
+ 'carbon_user_sessions.session_data': string;
1075
+ 'carbon_user_sessions.user_online_status': string;
1076
+ 'carbon_user_tasks.task_id': string;
1077
+ 'carbon_user_tasks.user_id': string;
1078
+ 'carbon_user_tasks.from_id': string;
1079
+ 'carbon_user_tasks.task_name': string;
1080
+ 'carbon_user_tasks.task_description': string;
1081
+ 'carbon_user_tasks.percent_complete': string;
1082
+ 'carbon_user_tasks.start_date': string;
1083
+ 'carbon_user_tasks.end_date': string;
1084
+ 'carbon_users.user_username': string;
1085
+ 'carbon_users.user_password': string;
1086
+ 'carbon_users.user_id': string;
1087
+ 'carbon_users.user_type': string;
1088
+ 'carbon_users.user_sport': string;
1089
+ 'carbon_users.user_session_id': string;
1090
+ 'carbon_users.user_facebook_id': string;
1091
+ 'carbon_users.user_first_name': string;
1092
+ 'carbon_users.user_last_name': string;
1093
+ 'carbon_users.user_profile_pic': string;
1094
+ 'carbon_users.user_profile_uri': string;
1095
+ 'carbon_users.user_cover_photo': string;
1096
+ 'carbon_users.user_birthday': string;
1097
+ 'carbon_users.user_gender': string;
1098
+ 'carbon_users.user_about_me': string;
1099
+ 'carbon_users.user_rank': string;
1100
+ 'carbon_users.user_email': string;
1101
+ 'carbon_users.user_email_code': string;
1102
+ 'carbon_users.user_email_confirmed': string;
1103
+ 'carbon_users.user_generated_string': string;
1104
+ 'carbon_users.user_membership': string;
1105
+ 'carbon_users.user_deactivated': string;
1106
+ 'carbon_users.user_last_login': string;
1107
+ 'carbon_users.user_ip': string;
1108
+ 'carbon_users.user_education_history': string;
1109
+ 'carbon_users.user_location': string;
1110
+ 'carbon_users.user_creation_date': string;
1111
+ 'carbon_wp_commentmeta.meta_id': string;
1112
+ 'carbon_wp_commentmeta.comment_id': string;
1113
+ 'carbon_wp_commentmeta.meta_key': string;
1114
+ 'carbon_wp_commentmeta.meta_value': string;
1115
+ 'carbon_wp_comments.comment_ID': string;
1116
+ 'carbon_wp_comments.comment_post_ID': string;
1117
+ 'carbon_wp_comments.comment_author': string;
1118
+ 'carbon_wp_comments.comment_author_email': string;
1119
+ 'carbon_wp_comments.comment_author_url': string;
1120
+ 'carbon_wp_comments.comment_author_IP': string;
1121
+ 'carbon_wp_comments.comment_date': string;
1122
+ 'carbon_wp_comments.comment_date_gmt': string;
1123
+ 'carbon_wp_comments.comment_content': string;
1124
+ 'carbon_wp_comments.comment_karma': string;
1125
+ 'carbon_wp_comments.comment_approved': string;
1126
+ 'carbon_wp_comments.comment_agent': string;
1127
+ 'carbon_wp_comments.comment_type': string;
1128
+ 'carbon_wp_comments.comment_parent': string;
1129
+ 'carbon_wp_comments.user_id': string;
1130
+ 'carbon_wp_links.link_id': string;
1131
+ 'carbon_wp_links.link_url': string;
1132
+ 'carbon_wp_links.link_name': string;
1133
+ 'carbon_wp_links.link_image': string;
1134
+ 'carbon_wp_links.link_target': string;
1135
+ 'carbon_wp_links.link_description': string;
1136
+ 'carbon_wp_links.link_visible': string;
1137
+ 'carbon_wp_links.link_owner': string;
1138
+ 'carbon_wp_links.link_rating': string;
1139
+ 'carbon_wp_links.link_updated': string;
1140
+ 'carbon_wp_links.link_rel': string;
1141
+ 'carbon_wp_links.link_notes': string;
1142
+ 'carbon_wp_links.link_rss': string;
1143
+ 'carbon_wp_options.option_id': string;
1144
+ 'carbon_wp_options.option_name': string;
1145
+ 'carbon_wp_options.option_value': string;
1146
+ 'carbon_wp_options.autoload': string;
1147
+ 'carbon_wp_postmeta.meta_id': string;
1148
+ 'carbon_wp_postmeta.post_id': string;
1149
+ 'carbon_wp_postmeta.meta_key': string;
1150
+ 'carbon_wp_postmeta.meta_value': string;
1151
+ 'carbon_wp_posts.ID': string;
1152
+ 'carbon_wp_posts.post_author': string;
1153
+ 'carbon_wp_posts.post_date': string;
1154
+ 'carbon_wp_posts.post_date_gmt': string;
1155
+ 'carbon_wp_posts.post_content': string;
1156
+ 'carbon_wp_posts.post_title': string;
1157
+ 'carbon_wp_posts.post_excerpt': string;
1158
+ 'carbon_wp_posts.post_status': string;
1159
+ 'carbon_wp_posts.comment_status': string;
1160
+ 'carbon_wp_posts.ping_status': string;
1161
+ 'carbon_wp_posts.post_password': string;
1162
+ 'carbon_wp_posts.post_name': string;
1163
+ 'carbon_wp_posts.to_ping': string;
1164
+ 'carbon_wp_posts.pinged': string;
1165
+ 'carbon_wp_posts.post_modified': string;
1166
+ 'carbon_wp_posts.post_modified_gmt': string;
1167
+ 'carbon_wp_posts.post_content_filtered': string;
1168
+ 'carbon_wp_posts.post_parent': string;
1169
+ 'carbon_wp_posts.guid': string;
1170
+ 'carbon_wp_posts.menu_order': string;
1171
+ 'carbon_wp_posts.post_type': string;
1172
+ 'carbon_wp_posts.post_mime_type': string;
1173
+ 'carbon_wp_posts.comment_count': string;
1174
+ 'carbon_wp_term_relationships.object_id': string;
1175
+ 'carbon_wp_term_relationships.term_taxonomy_id': string;
1176
+ 'carbon_wp_term_relationships.term_order': string;
1177
+ 'carbon_wp_term_taxonomy.term_taxonomy_id': string;
1178
+ 'carbon_wp_term_taxonomy.term_id': string;
1179
+ 'carbon_wp_term_taxonomy.taxonomy': string;
1180
+ 'carbon_wp_term_taxonomy.description': string;
1181
+ 'carbon_wp_term_taxonomy.parent': string;
1182
+ 'carbon_wp_term_taxonomy.count': string;
1183
+ 'carbon_wp_termmeta.meta_id': string;
1184
+ 'carbon_wp_termmeta.term_id': string;
1185
+ 'carbon_wp_termmeta.meta_key': string;
1186
+ 'carbon_wp_termmeta.meta_value': string;
1187
+ 'carbon_wp_terms.term_id': string;
1188
+ 'carbon_wp_terms.name': string;
1189
+ 'carbon_wp_terms.slug': string;
1190
+ 'carbon_wp_terms.term_group': string;
1191
+ 'carbon_wp_usermeta.umeta_id': string;
1192
+ 'carbon_wp_usermeta.user_id': string;
1193
+ 'carbon_wp_usermeta.meta_key': string;
1194
+ 'carbon_wp_usermeta.meta_value': string;
1195
+ 'carbon_wp_users.ID': string;
1196
+ 'carbon_wp_users.user_login': string;
1197
+ 'carbon_wp_users.user_pass': string;
1198
+ 'carbon_wp_users.user_nicename': string;
1199
+ 'carbon_wp_users.user_email': string;
1200
+ 'carbon_wp_users.user_url': string;
1201
+ 'carbon_wp_users.user_registered': string;
1202
+ 'carbon_wp_users.user_activation_key': string;
1203
+ 'carbon_wp_users.user_status': string;
1204
+ 'carbon_wp_users.display_name': string;
1205
+ };
1206
+ 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;
1207
+ declare const convertForRequestBody: (restfulObject: RestTableInterfaces, tableName: string | string[], regexErrorHandler?: (message: string) => void) => {};
1208
+
1209
+ declare const isProduction: boolean;
1210
+
1211
+ export { AccessDenied, Alert, BackendThrowable, C6, C6RestfulModel, COLUMNS, CarbonReact, ErrorHttpCode, GlobalHistory, HandleResponseCodes, Loading, Localhost, Nest, PageNotFound, Popup, RegExpMap, RestShortTableNames, RestTableInterfaces, RestTableNames, TABLES, addAlert, export_default$1 as addValidSQL, axiosInstance, carbons, changed, comments, complexMap, convertForRequestBody, deleteRestfulObjectArrays, documentation, eUpdateInsertMethod, feature_group_references, features, getRootStyleValue, getStyles, globalNavigate, group_references, groups, export_default as hexToRgb, history_logs, iAlert, iAlertButtonOptions, iCarbonORMState, iCarbons, iComments, iDocumentation, iFeature_Group_References, iFeatures, iGroup_References, iGroups, iHistory_Logs, iLocation_References, iLocations, iPhotos, iReports, iRestfulObjectArrayTypes, iSessions, iTypeValidation, 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, isEdgeBrowser, isProduction, location_references, locations, parseMultipleJson, photos, range, reports, ScrollIntoViewDirective as scrollIntoView, sessions, setCookies, setUrl, stringMap, stringNumberMap, tRestfulObjectArrayKeys, tRestfulObjectArrayValues, tRestfulObjectValues, tStatefulApiData, toDataURL, updateRestfulObjectArray as updateRestfulObjectArrays, uploadImage, uploadImageChange, user_followers, user_groups, user_messages, user_sessions, user_tasks, users, useWindowDimensions as windowDimensions, 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 };