@servicenow/sdk-build-plugins 2.1.4 → 2.2.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.
- package/dist/AttachmentPlugin.d.ts +6 -7
- package/dist/AttachmentPlugin.js +8 -6
- package/dist/AttachmentPlugin.js.map +1 -1
- package/dist/BusinessRulePlugin.d.ts +5 -5
- package/dist/BusinessRulePlugin.js +4 -4
- package/dist/BusinessRulePlugin.js.map +1 -1
- package/dist/CrossScopePrivilegePlugin.d.ts +5 -5
- package/dist/CrossScopePrivilegePlugin.js +1 -2
- package/dist/CrossScopePrivilegePlugin.js.map +1 -1
- package/dist/DefaultPlugin.d.ts +19 -11
- package/dist/DefaultPlugin.js +23 -51
- package/dist/DefaultPlugin.js.map +1 -1
- package/dist/HtmlTemplatePlugin.d.ts +2 -2
- package/dist/HtmlTemplatePlugin.js +3 -26
- package/dist/HtmlTemplatePlugin.js.map +1 -1
- package/dist/IdPlugin.d.ts +5 -4
- package/dist/IdPlugin.js +5 -9
- package/dist/IdPlugin.js.map +1 -1
- package/dist/JsonPlugin.d.ts +8 -3
- package/dist/JsonPlugin.js +6 -11
- package/dist/JsonPlugin.js.map +1 -1
- package/dist/ListPlugin.d.ts +6 -7
- package/dist/ListPlugin.js +17 -19
- package/dist/ListPlugin.js.map +1 -1
- package/dist/NowConfigPlugin.d.ts +1 -1
- package/dist/NowConfigPlugin.js +5 -31
- package/dist/NowConfigPlugin.js.map +1 -1
- package/dist/PackageJsonPlugin.d.ts +1 -1
- package/dist/PackageJsonPlugin.js +1 -1
- package/dist/PackageJsonPlugin.js.map +1 -1
- package/dist/PropertyPlugin.d.ts +5 -66
- package/dist/PropertyPlugin.js +6 -12
- package/dist/PropertyPlugin.js.map +1 -1
- package/dist/ScriptTemplatePlugin.d.ts +1 -1
- package/dist/ScriptTemplatePlugin.js +5 -5
- package/dist/ScriptTemplatePlugin.js.map +1 -1
- package/dist/ServerModulePlugin.d.ts +5 -6
- package/dist/ServerModulePlugin.js +10 -39
- package/dist/ServerModulePlugin.js.map +1 -1
- package/dist/UserPreferencePlugin.d.ts +1 -1
- package/dist/aclAndRole/AclPlugin.d.ts +44 -28
- package/dist/aclAndRole/AclPlugin.js +30 -33
- package/dist/aclAndRole/AclPlugin.js.map +1 -1
- package/dist/aclAndRole/RolePlugin.d.ts +5 -6
- package/dist/aclAndRole/RolePlugin.js +6 -7
- package/dist/aclAndRole/RolePlugin.js.map +1 -1
- package/dist/aclAndRole/Util.js +7 -30
- package/dist/aclAndRole/Util.js.map +1 -1
- package/dist/app/ApplicationMenuPlugin.d.ts +5 -5
- package/dist/app/ApplicationMenuPlugin.js +2 -3
- package/dist/app/ApplicationMenuPlugin.js.map +1 -1
- package/dist/atf/TestPlugin.d.ts +3 -3
- package/dist/atf/TestPlugin.js +1 -1
- package/dist/atf/TestPlugin.js.map +1 -1
- package/dist/db/ColumnPlugins.d.ts +85 -85
- package/dist/db/ColumnPlugins.js +17 -19
- package/dist/db/ColumnPlugins.js.map +1 -1
- package/dist/db/DocumentationPlugin.d.ts +6 -6
- package/dist/db/DocumentationPlugin.js +17 -49
- package/dist/db/DocumentationPlugin.js.map +1 -1
- package/dist/db/RecordPlugin.d.ts +7 -101
- package/dist/db/RecordPlugin.js +25 -24
- package/dist/db/RecordPlugin.js.map +1 -1
- package/dist/db/TablePlugin.d.ts +9 -610
- package/dist/db/TablePlugin.js +185 -84
- package/dist/db/TablePlugin.js.map +1 -1
- package/dist/scriptedRESTAPI/RESTDeserializationUtils.d.ts +0 -2
- package/dist/scriptedRESTAPI/RESTDeserializationUtils.js +17 -18
- package/dist/scriptedRESTAPI/RESTDeserializationUtils.js.map +1 -1
- package/dist/scriptedRESTAPI/RESTSerializationUtils.d.ts +1 -3
- package/dist/scriptedRESTAPI/RESTSerializationUtils.js +0 -1
- package/dist/scriptedRESTAPI/RESTSerializationUtils.js.map +1 -1
- package/dist/scriptedRESTAPI/RestApiPlugin.d.ts +3 -4
- package/dist/scriptedRESTAPI/RestApiPlugin.js +7 -33
- package/dist/scriptedRESTAPI/RestApiPlugin.js.map +1 -1
- package/dist/scriptedRESTAPI/RestUtils.d.ts +1 -10
- package/dist/scriptedRESTAPI/RestUtils.js +11 -35
- package/dist/scriptedRESTAPI/RestUtils.js.map +1 -1
- package/dist/scripts/ClientScriptPlugin.d.ts +3 -4
- package/dist/scripts/ClientScriptPlugin.js +11 -37
- package/dist/scripts/ClientScriptPlugin.js.map +1 -1
- package/dist/uxf/ExperiencePlugin.d.ts +2 -2
- package/dist/uxf/RoutesPlugin.d.ts +2 -2
- package/dist/uxf/RoutesPlugin.js +2 -3
- package/dist/uxf/RoutesPlugin.js.map +1 -1
- package/dist/uxf/tectonicIdGenerator.d.ts +1 -1
- package/dist/uxf/tectonicIdGenerator.js +5 -28
- package/dist/uxf/tectonicIdGenerator.js.map +1 -1
- package/package.json +6 -8
- package/src/AttachmentPlugin.ts +5 -7
- package/src/BusinessRulePlugin.ts +12 -6
- package/src/CrossScopePrivilegePlugin.ts +2 -3
- package/src/DefaultPlugin.ts +22 -26
- package/src/HtmlTemplatePlugin.ts +2 -2
- package/src/IdPlugin.ts +6 -10
- package/src/JsonPlugin.ts +7 -12
- package/src/ListPlugin.ts +20 -22
- package/src/NowConfigPlugin.ts +10 -13
- package/src/PackageJsonPlugin.ts +1 -1
- package/src/PropertyPlugin.ts +8 -14
- package/src/ScriptTemplatePlugin.ts +1 -1
- package/src/ServerModulePlugin.ts +15 -20
- package/src/aclAndRole/AclPlugin.ts +37 -6
- package/src/aclAndRole/RolePlugin.ts +7 -9
- package/src/aclAndRole/Util.ts +2 -2
- package/src/app/ApplicationMenuPlugin.ts +3 -4
- package/src/atf/TestPlugin.ts +3 -3
- package/src/db/ColumnPlugins.ts +20 -22
- package/src/db/DocumentationPlugin.ts +7 -41
- package/src/db/RecordPlugin.ts +23 -26
- package/src/db/TablePlugin.ts +222 -115
- package/src/scriptedRESTAPI/RESTDeserializationUtils.ts +18 -19
- package/src/scriptedRESTAPI/RESTSerializationUtils.ts +1 -1
- package/src/scriptedRESTAPI/RestApiPlugin.ts +15 -18
- package/src/scriptedRESTAPI/RestUtils.ts +7 -7
- package/src/scripts/ClientScriptPlugin.ts +10 -12
- package/src/uxf/RoutesPlugin.ts +2 -3
- package/src/uxf/tectonicIdGenerator.ts +3 -6
|
@@ -9,14 +9,14 @@ export declare const StringColumnPlugin: {
|
|
|
9
9
|
handled: false;
|
|
10
10
|
} | {
|
|
11
11
|
handled: true;
|
|
12
|
-
data
|
|
12
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>>> | undefined;
|
|
13
13
|
diagnostics: FluentDiagnostic[];
|
|
14
14
|
} | {
|
|
15
15
|
handled: true;
|
|
16
16
|
diagnostics: FluentDiagnostic[];
|
|
17
17
|
data: ObjectData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>> & {
|
|
18
18
|
readonly entityKind: "string";
|
|
19
|
-
}
|
|
19
|
+
}>;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
22
|
};
|
|
@@ -31,14 +31,14 @@ export declare const BooleanColumnPlugin: {
|
|
|
31
31
|
handled: false;
|
|
32
32
|
} | {
|
|
33
33
|
handled: true;
|
|
34
|
-
data
|
|
34
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<boolean, db.Column<boolean, boolean>>> | undefined;
|
|
35
35
|
diagnostics: FluentDiagnostic[];
|
|
36
36
|
} | {
|
|
37
37
|
handled: true;
|
|
38
38
|
diagnostics: FluentDiagnostic[];
|
|
39
39
|
data: ObjectData<db.Typed<boolean, db.Column<boolean, boolean>> & {
|
|
40
40
|
readonly entityKind: "boolean";
|
|
41
|
-
}
|
|
41
|
+
}>;
|
|
42
42
|
};
|
|
43
43
|
};
|
|
44
44
|
};
|
|
@@ -53,21 +53,21 @@ export declare const IntegerColumnPlugin: {
|
|
|
53
53
|
handled: false;
|
|
54
54
|
} | {
|
|
55
55
|
handled: true;
|
|
56
|
-
data
|
|
56
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<number, db.IntegerColumnType<db.Choices<number>, number, number, "none">>> | undefined;
|
|
57
57
|
diagnostics: FluentDiagnostic[];
|
|
58
58
|
} | {
|
|
59
59
|
handled: true;
|
|
60
60
|
diagnostics: FluentDiagnostic[];
|
|
61
61
|
data: ObjectData<db.Typed<number, db.IntegerColumnType<db.Choices<number>, number, number, "none">> & {
|
|
62
62
|
readonly entityKind: "integer";
|
|
63
|
-
}
|
|
63
|
+
}>;
|
|
64
64
|
};
|
|
65
65
|
};
|
|
66
66
|
};
|
|
67
67
|
};
|
|
68
68
|
};
|
|
69
69
|
export declare const BasicImageColumnPlugin: {
|
|
70
|
-
readonly name: "
|
|
70
|
+
readonly name: "imageColumn";
|
|
71
71
|
readonly extractors: {
|
|
72
72
|
readonly raw: {
|
|
73
73
|
readonly fluent: {
|
|
@@ -75,14 +75,14 @@ export declare const BasicImageColumnPlugin: {
|
|
|
75
75
|
handled: false;
|
|
76
76
|
} | {
|
|
77
77
|
handled: true;
|
|
78
|
-
data
|
|
78
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string>>> | undefined;
|
|
79
79
|
diagnostics: FluentDiagnostic[];
|
|
80
80
|
} | {
|
|
81
81
|
handled: true;
|
|
82
82
|
diagnostics: FluentDiagnostic[];
|
|
83
83
|
data: ObjectData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string>> & {
|
|
84
|
-
readonly entityKind: "
|
|
85
|
-
}
|
|
84
|
+
readonly entityKind: "image";
|
|
85
|
+
}>;
|
|
86
86
|
};
|
|
87
87
|
};
|
|
88
88
|
};
|
|
@@ -97,14 +97,14 @@ export declare const ConditionsColumnPlugin: {
|
|
|
97
97
|
handled: false;
|
|
98
98
|
} | {
|
|
99
99
|
handled: true;
|
|
100
|
-
data
|
|
100
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string, db.Column<string, string>>> | undefined;
|
|
101
101
|
diagnostics: FluentDiagnostic[];
|
|
102
102
|
} | {
|
|
103
103
|
handled: true;
|
|
104
104
|
diagnostics: FluentDiagnostic[];
|
|
105
105
|
data: ObjectData<db.Typed<string, db.Column<string, string>> & {
|
|
106
106
|
readonly entityKind: "conditions";
|
|
107
|
-
}
|
|
107
|
+
}>;
|
|
108
108
|
};
|
|
109
109
|
};
|
|
110
110
|
};
|
|
@@ -119,14 +119,14 @@ export declare const ChoiceColumnPlugin: {
|
|
|
119
119
|
handled: false;
|
|
120
120
|
} | {
|
|
121
121
|
handled: true;
|
|
122
|
-
data
|
|
122
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string | number, db.ChoiceColumnType<db.Choices<string | number>, string | number, string | number, keyof Now.Internal.Tables, "none" | "dropdown_with_none" | "suggestion" | "dropdown_without_none">>> | undefined;
|
|
123
123
|
diagnostics: FluentDiagnostic[];
|
|
124
124
|
} | {
|
|
125
125
|
handled: true;
|
|
126
126
|
diagnostics: FluentDiagnostic[];
|
|
127
127
|
data: ObjectData<db.Typed<string | number, db.ChoiceColumnType<db.Choices<string | number>, string | number, string | number, keyof Now.Internal.Tables, "none" | "dropdown_with_none" | "suggestion" | "dropdown_without_none">> & {
|
|
128
128
|
readonly entityKind: "choice";
|
|
129
|
-
}
|
|
129
|
+
}>;
|
|
130
130
|
};
|
|
131
131
|
};
|
|
132
132
|
};
|
|
@@ -141,21 +141,21 @@ export declare const DecimalColumnPlugin: {
|
|
|
141
141
|
handled: false;
|
|
142
142
|
} | {
|
|
143
143
|
handled: true;
|
|
144
|
-
data
|
|
144
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<number, db.Column<number, number>>> | undefined;
|
|
145
145
|
diagnostics: FluentDiagnostic[];
|
|
146
146
|
} | {
|
|
147
147
|
handled: true;
|
|
148
148
|
diagnostics: FluentDiagnostic[];
|
|
149
149
|
data: ObjectData<db.Typed<number, db.Column<number, number>> & {
|
|
150
150
|
readonly entityKind: "decimal";
|
|
151
|
-
}
|
|
151
|
+
}>;
|
|
152
152
|
};
|
|
153
153
|
};
|
|
154
154
|
};
|
|
155
155
|
};
|
|
156
156
|
};
|
|
157
157
|
export declare const DocumentIdColumnPlugin: {
|
|
158
|
-
readonly name: "
|
|
158
|
+
readonly name: "document_idColumn";
|
|
159
159
|
readonly extractors: {
|
|
160
160
|
readonly raw: {
|
|
161
161
|
readonly fluent: {
|
|
@@ -163,9 +163,9 @@ export declare const DocumentIdColumnPlugin: {
|
|
|
163
163
|
handled: false;
|
|
164
164
|
} | {
|
|
165
165
|
handled: true;
|
|
166
|
-
data
|
|
166
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string | db.Record, db.Column<string | db.Record, string | db.Record> & {
|
|
167
167
|
dependent?: db.TableNameColumnType;
|
|
168
|
-
}>>
|
|
168
|
+
}>> | undefined;
|
|
169
169
|
diagnostics: FluentDiagnostic[];
|
|
170
170
|
} | {
|
|
171
171
|
handled: true;
|
|
@@ -173,15 +173,15 @@ export declare const DocumentIdColumnPlugin: {
|
|
|
173
173
|
data: ObjectData<db.Typed<string | db.Record, db.Column<string | db.Record, string | db.Record> & {
|
|
174
174
|
dependent?: db.TableNameColumnType;
|
|
175
175
|
}> & {
|
|
176
|
-
readonly entityKind: "
|
|
177
|
-
}
|
|
176
|
+
readonly entityKind: "document_id";
|
|
177
|
+
}>;
|
|
178
178
|
};
|
|
179
179
|
};
|
|
180
180
|
};
|
|
181
181
|
};
|
|
182
182
|
};
|
|
183
183
|
export declare const DomainIdColumnPlugin: {
|
|
184
|
-
readonly name: "
|
|
184
|
+
readonly name: "domain_idColumn";
|
|
185
185
|
readonly extractors: {
|
|
186
186
|
readonly raw: {
|
|
187
187
|
readonly fluent: {
|
|
@@ -189,21 +189,21 @@ export declare const DomainIdColumnPlugin: {
|
|
|
189
189
|
handled: false;
|
|
190
190
|
} | {
|
|
191
191
|
handled: true;
|
|
192
|
-
data
|
|
192
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<db.Record<"domain"> | "global", db.Column<db.Record<"domain"> | "global", db.Record<"domain"> | "global">>> | undefined;
|
|
193
193
|
diagnostics: FluentDiagnostic[];
|
|
194
194
|
} | {
|
|
195
195
|
handled: true;
|
|
196
196
|
diagnostics: FluentDiagnostic[];
|
|
197
197
|
data: ObjectData<db.Typed<db.Record<"domain"> | "global", db.Column<db.Record<"domain"> | "global", db.Record<"domain"> | "global">> & {
|
|
198
|
-
readonly entityKind: "
|
|
199
|
-
}
|
|
198
|
+
readonly entityKind: "domain_id";
|
|
199
|
+
}>;
|
|
200
200
|
};
|
|
201
201
|
};
|
|
202
202
|
};
|
|
203
203
|
};
|
|
204
204
|
};
|
|
205
205
|
export declare const DomainPathColumnPlugin: {
|
|
206
|
-
readonly name: "
|
|
206
|
+
readonly name: "domain_pathColumn";
|
|
207
207
|
readonly extractors: {
|
|
208
208
|
readonly raw: {
|
|
209
209
|
readonly fluent: {
|
|
@@ -211,14 +211,14 @@ export declare const DomainPathColumnPlugin: {
|
|
|
211
211
|
handled: false;
|
|
212
212
|
} | {
|
|
213
213
|
handled: true;
|
|
214
|
-
data
|
|
214
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>>> | undefined;
|
|
215
215
|
diagnostics: FluentDiagnostic[];
|
|
216
216
|
} | {
|
|
217
217
|
handled: true;
|
|
218
218
|
diagnostics: FluentDiagnostic[];
|
|
219
219
|
data: ObjectData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>> & {
|
|
220
|
-
readonly entityKind: "
|
|
221
|
-
}
|
|
220
|
+
readonly entityKind: "domain_path";
|
|
221
|
+
}>;
|
|
222
222
|
};
|
|
223
223
|
};
|
|
224
224
|
};
|
|
@@ -233,9 +233,9 @@ export declare const ListColumnPlugin: {
|
|
|
233
233
|
handled: false;
|
|
234
234
|
} | {
|
|
235
235
|
handled: true;
|
|
236
|
-
data
|
|
236
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<db.Record<keyof Now.Internal.Tables>[], db.Column<db.Record<keyof Now.Internal.Tables>[], db.Record<keyof Now.Internal.Tables>[]> & {
|
|
237
237
|
referenceTable?: keyof Now.Internal.Tables;
|
|
238
|
-
}>>
|
|
238
|
+
}>> | undefined;
|
|
239
239
|
diagnostics: FluentDiagnostic[];
|
|
240
240
|
} | {
|
|
241
241
|
handled: true;
|
|
@@ -244,7 +244,7 @@ export declare const ListColumnPlugin: {
|
|
|
244
244
|
referenceTable?: keyof Now.Internal.Tables;
|
|
245
245
|
}> & {
|
|
246
246
|
readonly entityKind: "glide_list";
|
|
247
|
-
}
|
|
247
|
+
}>;
|
|
248
248
|
};
|
|
249
249
|
};
|
|
250
250
|
};
|
|
@@ -259,10 +259,10 @@ export declare const ReferenceColumnPlugin: {
|
|
|
259
259
|
handled: false;
|
|
260
260
|
} | {
|
|
261
261
|
handled: true;
|
|
262
|
-
data
|
|
262
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string | db.Record<keyof Now.Internal.Tables> | Now.Internal.ExplicitKey<keyof Now.Internal.Tables>, db.Column<string | db.Record<keyof Now.Internal.Tables> | Now.Internal.ExplicitKey<keyof Now.Internal.Tables>, string | db.Record<keyof Now.Internal.Tables> | Now.Internal.ExplicitKey<keyof Now.Internal.Tables>> & {
|
|
263
263
|
referenceTable?: keyof Now.Internal.Tables;
|
|
264
264
|
cascadeRule?: "none" | "delete_no_workflow" | "cascade" | "delete" | "restrict" | "clear";
|
|
265
|
-
}>>
|
|
265
|
+
}>> | undefined;
|
|
266
266
|
diagnostics: FluentDiagnostic[];
|
|
267
267
|
} | {
|
|
268
268
|
handled: true;
|
|
@@ -272,7 +272,7 @@ export declare const ReferenceColumnPlugin: {
|
|
|
272
272
|
cascadeRule?: "none" | "delete_no_workflow" | "cascade" | "delete" | "restrict" | "clear";
|
|
273
273
|
}> & {
|
|
274
274
|
readonly entityKind: "reference";
|
|
275
|
-
}
|
|
275
|
+
}>;
|
|
276
276
|
};
|
|
277
277
|
};
|
|
278
278
|
};
|
|
@@ -287,14 +287,14 @@ export declare const RadioColumnPlugin: {
|
|
|
287
287
|
handled: false;
|
|
288
288
|
} | {
|
|
289
289
|
handled: true;
|
|
290
|
-
data
|
|
290
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string | number, db.RadioColumnType<db.Choices, string | number, string | number>>> | undefined;
|
|
291
291
|
diagnostics: FluentDiagnostic[];
|
|
292
292
|
} | {
|
|
293
293
|
handled: true;
|
|
294
294
|
diagnostics: FluentDiagnostic[];
|
|
295
295
|
data: ObjectData<db.Typed<string | number, db.RadioColumnType<db.Choices, string | number, string | number>> & {
|
|
296
296
|
readonly entityKind: "radio";
|
|
297
|
-
}
|
|
297
|
+
}>;
|
|
298
298
|
};
|
|
299
299
|
};
|
|
300
300
|
};
|
|
@@ -309,9 +309,9 @@ export declare const ScriptColumnPlugin: {
|
|
|
309
309
|
handled: false;
|
|
310
310
|
} | {
|
|
311
311
|
handled: true;
|
|
312
|
-
data
|
|
312
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string | db.ScriptModule<Function>, db.Column<string | db.ScriptModule<Function>, string | db.ScriptModule<Function>> & {
|
|
313
313
|
signature?: Function;
|
|
314
|
-
}>>
|
|
314
|
+
}>> | undefined;
|
|
315
315
|
diagnostics: FluentDiagnostic[];
|
|
316
316
|
} | {
|
|
317
317
|
handled: true;
|
|
@@ -320,14 +320,14 @@ export declare const ScriptColumnPlugin: {
|
|
|
320
320
|
signature?: Function;
|
|
321
321
|
}> & {
|
|
322
322
|
readonly entityKind: "script";
|
|
323
|
-
}
|
|
323
|
+
}>;
|
|
324
324
|
};
|
|
325
325
|
};
|
|
326
326
|
};
|
|
327
327
|
};
|
|
328
328
|
};
|
|
329
329
|
export declare const SystemClassNameColumnPlugin: {
|
|
330
|
-
readonly name: "
|
|
330
|
+
readonly name: "sys_class_nameColumn";
|
|
331
331
|
readonly extractors: {
|
|
332
332
|
readonly raw: {
|
|
333
333
|
readonly fluent: {
|
|
@@ -335,21 +335,21 @@ export declare const SystemClassNameColumnPlugin: {
|
|
|
335
335
|
handled: false;
|
|
336
336
|
} | {
|
|
337
337
|
handled: true;
|
|
338
|
-
data
|
|
338
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>>> | undefined;
|
|
339
339
|
diagnostics: FluentDiagnostic[];
|
|
340
340
|
} | {
|
|
341
341
|
handled: true;
|
|
342
342
|
diagnostics: FluentDiagnostic[];
|
|
343
343
|
data: ObjectData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>> & {
|
|
344
|
-
readonly entityKind: "
|
|
345
|
-
}
|
|
344
|
+
readonly entityKind: "sys_class_name";
|
|
345
|
+
}>;
|
|
346
346
|
};
|
|
347
347
|
};
|
|
348
348
|
};
|
|
349
349
|
};
|
|
350
350
|
};
|
|
351
351
|
export declare const TableNameColumnPlugin: {
|
|
352
|
-
readonly name: "
|
|
352
|
+
readonly name: "table_nameColumn";
|
|
353
353
|
readonly extractors: {
|
|
354
354
|
readonly raw: {
|
|
355
355
|
readonly fluent: {
|
|
@@ -357,21 +357,21 @@ export declare const TableNameColumnPlugin: {
|
|
|
357
357
|
handled: false;
|
|
358
358
|
} | {
|
|
359
359
|
handled: true;
|
|
360
|
-
data
|
|
360
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<keyof Now.Internal.Tables, db.TableNameColumnType<keyof Now.Internal.Tables, keyof Now.Internal.Tables>>> | undefined;
|
|
361
361
|
diagnostics: FluentDiagnostic[];
|
|
362
362
|
} | {
|
|
363
363
|
handled: true;
|
|
364
364
|
diagnostics: FluentDiagnostic[];
|
|
365
365
|
data: ObjectData<db.Typed<keyof Now.Internal.Tables, db.TableNameColumnType<keyof Now.Internal.Tables, keyof Now.Internal.Tables>> & {
|
|
366
|
-
readonly entityKind: "
|
|
367
|
-
}
|
|
366
|
+
readonly entityKind: "table_name";
|
|
367
|
+
}>;
|
|
368
368
|
};
|
|
369
369
|
};
|
|
370
370
|
};
|
|
371
371
|
};
|
|
372
372
|
};
|
|
373
373
|
export declare const TranslatedFieldColumnPlugin: {
|
|
374
|
-
readonly name: "
|
|
374
|
+
readonly name: "translated_fieldColumn";
|
|
375
375
|
readonly extractors: {
|
|
376
376
|
readonly raw: {
|
|
377
377
|
readonly fluent: {
|
|
@@ -379,21 +379,21 @@ export declare const TranslatedFieldColumnPlugin: {
|
|
|
379
379
|
handled: false;
|
|
380
380
|
} | {
|
|
381
381
|
handled: true;
|
|
382
|
-
data
|
|
382
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>>> | undefined;
|
|
383
383
|
diagnostics: FluentDiagnostic[];
|
|
384
384
|
} | {
|
|
385
385
|
handled: true;
|
|
386
386
|
diagnostics: FluentDiagnostic[];
|
|
387
387
|
data: ObjectData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>> & {
|
|
388
|
-
readonly entityKind: "
|
|
389
|
-
}
|
|
388
|
+
readonly entityKind: "translated_field";
|
|
389
|
+
}>;
|
|
390
390
|
};
|
|
391
391
|
};
|
|
392
392
|
};
|
|
393
393
|
};
|
|
394
394
|
};
|
|
395
395
|
export declare const TranslatedTextColumnPlugin: {
|
|
396
|
-
readonly name: "
|
|
396
|
+
readonly name: "translated_textColumn";
|
|
397
397
|
readonly extractors: {
|
|
398
398
|
readonly raw: {
|
|
399
399
|
readonly fluent: {
|
|
@@ -401,21 +401,21 @@ export declare const TranslatedTextColumnPlugin: {
|
|
|
401
401
|
handled: false;
|
|
402
402
|
} | {
|
|
403
403
|
handled: true;
|
|
404
|
-
data
|
|
404
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>>> | undefined;
|
|
405
405
|
diagnostics: FluentDiagnostic[];
|
|
406
406
|
} | {
|
|
407
407
|
handled: true;
|
|
408
408
|
diagnostics: FluentDiagnostic[];
|
|
409
409
|
data: ObjectData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>> & {
|
|
410
|
-
readonly entityKind: "
|
|
411
|
-
}
|
|
410
|
+
readonly entityKind: "translated_text";
|
|
411
|
+
}>;
|
|
412
412
|
};
|
|
413
413
|
};
|
|
414
414
|
};
|
|
415
415
|
};
|
|
416
416
|
};
|
|
417
417
|
export declare const UserRolesColumnPlugin: {
|
|
418
|
-
readonly name: "
|
|
418
|
+
readonly name: "user_rolesColumn";
|
|
419
419
|
readonly extractors: {
|
|
420
420
|
readonly raw: {
|
|
421
421
|
readonly fluent: {
|
|
@@ -423,7 +423,7 @@ export declare const UserRolesColumnPlugin: {
|
|
|
423
423
|
handled: false;
|
|
424
424
|
} | {
|
|
425
425
|
handled: true;
|
|
426
|
-
data
|
|
426
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string | {
|
|
427
427
|
$id: string | number;
|
|
428
428
|
name: string;
|
|
429
429
|
assignable_by?: string | undefined;
|
|
@@ -453,7 +453,7 @@ export declare const UserRolesColumnPlugin: {
|
|
|
453
453
|
grantable?: boolean | undefined;
|
|
454
454
|
contains_roles?: any[] | undefined;
|
|
455
455
|
scoped_admin?: boolean | undefined;
|
|
456
|
-
}>>>
|
|
456
|
+
}>>> | undefined;
|
|
457
457
|
diagnostics: FluentDiagnostic[];
|
|
458
458
|
} | {
|
|
459
459
|
handled: true;
|
|
@@ -489,8 +489,8 @@ export declare const UserRolesColumnPlugin: {
|
|
|
489
489
|
contains_roles?: any[] | undefined;
|
|
490
490
|
scoped_admin?: boolean | undefined;
|
|
491
491
|
}>> & {
|
|
492
|
-
readonly entityKind: "
|
|
493
|
-
}
|
|
492
|
+
readonly entityKind: "user_roles";
|
|
493
|
+
}>;
|
|
494
494
|
};
|
|
495
495
|
};
|
|
496
496
|
};
|
|
@@ -505,21 +505,21 @@ export declare const VersionColumnPlugin: {
|
|
|
505
505
|
handled: false;
|
|
506
506
|
} | {
|
|
507
507
|
handled: true;
|
|
508
|
-
data
|
|
508
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<`${bigint}.${bigint}.${bigint}`, db.Column<`${bigint}.${bigint}.${bigint}`, `${bigint}.${bigint}.${bigint}`>>> | undefined;
|
|
509
509
|
diagnostics: FluentDiagnostic[];
|
|
510
510
|
} | {
|
|
511
511
|
handled: true;
|
|
512
512
|
diagnostics: FluentDiagnostic[];
|
|
513
513
|
data: ObjectData<db.Typed<`${bigint}.${bigint}.${bigint}`, db.Column<`${bigint}.${bigint}.${bigint}`, `${bigint}.${bigint}.${bigint}`>> & {
|
|
514
514
|
readonly entityKind: "version";
|
|
515
|
-
}
|
|
515
|
+
}>;
|
|
516
516
|
};
|
|
517
517
|
};
|
|
518
518
|
};
|
|
519
519
|
};
|
|
520
520
|
};
|
|
521
521
|
export declare const FieldNameColumnPlugin: {
|
|
522
|
-
readonly name: "
|
|
522
|
+
readonly name: "field_nameColumn";
|
|
523
523
|
readonly extractors: {
|
|
524
524
|
readonly raw: {
|
|
525
525
|
readonly fluent: {
|
|
@@ -527,14 +527,14 @@ export declare const FieldNameColumnPlugin: {
|
|
|
527
527
|
handled: false;
|
|
528
528
|
} | {
|
|
529
529
|
handled: true;
|
|
530
|
-
data
|
|
530
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>>> | undefined;
|
|
531
531
|
diagnostics: FluentDiagnostic[];
|
|
532
532
|
} | {
|
|
533
533
|
handled: true;
|
|
534
534
|
diagnostics: FluentDiagnostic[];
|
|
535
535
|
data: ObjectData<db.Typed<string, db.StringColumnType<db.Choices<string>, "none", string, string, keyof Now.Internal.Tables>> & {
|
|
536
|
-
readonly entityKind: "
|
|
537
|
-
}
|
|
536
|
+
readonly entityKind: "field_name";
|
|
537
|
+
}>;
|
|
538
538
|
};
|
|
539
539
|
};
|
|
540
540
|
};
|
|
@@ -549,14 +549,14 @@ export declare const DateColumnPlugin: {
|
|
|
549
549
|
handled: false;
|
|
550
550
|
} | {
|
|
551
551
|
handled: true;
|
|
552
|
-
data
|
|
552
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<`${number}-${number}-${number}`, db.Column<`${number}-${number}-${number}`, `${number}-${number}-${number}`>>> | undefined;
|
|
553
553
|
diagnostics: FluentDiagnostic[];
|
|
554
554
|
} | {
|
|
555
555
|
handled: true;
|
|
556
556
|
diagnostics: FluentDiagnostic[];
|
|
557
557
|
data: ObjectData<db.Typed<`${number}-${number}-${number}`, db.Column<`${number}-${number}-${number}`, `${number}-${number}-${number}`>> & {
|
|
558
558
|
readonly entityKind: "glide_date";
|
|
559
|
-
}
|
|
559
|
+
}>;
|
|
560
560
|
};
|
|
561
561
|
};
|
|
562
562
|
};
|
|
@@ -571,14 +571,14 @@ export declare const DateTimeColumnPlugin: {
|
|
|
571
571
|
handled: false;
|
|
572
572
|
} | {
|
|
573
573
|
handled: true;
|
|
574
|
-
data
|
|
574
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<`${number}-${number}-${number} ${number}:${number}:${number}`, db.Column<`${number}-${number}-${number} ${number}:${number}:${number}`, `${number}-${number}-${number} ${number}:${number}:${number}`>>> | undefined;
|
|
575
575
|
diagnostics: FluentDiagnostic[];
|
|
576
576
|
} | {
|
|
577
577
|
handled: true;
|
|
578
578
|
diagnostics: FluentDiagnostic[];
|
|
579
579
|
data: ObjectData<db.Typed<`${number}-${number}-${number} ${number}:${number}:${number}`, db.Column<`${number}-${number}-${number} ${number}:${number}:${number}`, `${number}-${number}-${number} ${number}:${number}:${number}`>> & {
|
|
580
580
|
readonly entityKind: "glide_date_time";
|
|
581
|
-
}
|
|
581
|
+
}>;
|
|
582
582
|
};
|
|
583
583
|
};
|
|
584
584
|
};
|
|
@@ -593,14 +593,14 @@ export declare const CalendarDateTimeColumnPlugin: {
|
|
|
593
593
|
handled: false;
|
|
594
594
|
} | {
|
|
595
595
|
handled: true;
|
|
596
|
-
data
|
|
596
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<`${number}-${number}-${number} ${number}:${number}:${number}`, db.Column<`${number}-${number}-${number} ${number}:${number}:${number}`, `${number}-${number}-${number} ${number}:${number}:${number}`>>> | undefined;
|
|
597
597
|
diagnostics: FluentDiagnostic[];
|
|
598
598
|
} | {
|
|
599
599
|
handled: true;
|
|
600
600
|
diagnostics: FluentDiagnostic[];
|
|
601
601
|
data: ObjectData<db.Typed<`${number}-${number}-${number} ${number}:${number}:${number}`, db.Column<`${number}-${number}-${number} ${number}:${number}:${number}`, `${number}-${number}-${number} ${number}:${number}:${number}`>> & {
|
|
602
602
|
readonly entityKind: "calendar_date_time";
|
|
603
|
-
}
|
|
603
|
+
}>;
|
|
604
604
|
};
|
|
605
605
|
};
|
|
606
606
|
};
|
|
@@ -615,14 +615,14 @@ export declare const BasicDateTimeColumnPlugin: {
|
|
|
615
615
|
handled: false;
|
|
616
616
|
} | {
|
|
617
617
|
handled: true;
|
|
618
|
-
data
|
|
618
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<`${number}-${number}-${number} ${number}:${number}:${number}`, db.Column<`${number}-${number}-${number} ${number}:${number}:${number}`, `${number}-${number}-${number} ${number}:${number}:${number}`>>> | undefined;
|
|
619
619
|
diagnostics: FluentDiagnostic[];
|
|
620
620
|
} | {
|
|
621
621
|
handled: true;
|
|
622
622
|
diagnostics: FluentDiagnostic[];
|
|
623
623
|
data: ObjectData<db.Typed<`${number}-${number}-${number} ${number}:${number}:${number}`, db.Column<`${number}-${number}-${number} ${number}:${number}:${number}`, `${number}-${number}-${number} ${number}:${number}:${number}`>> & {
|
|
624
624
|
readonly entityKind: "datetime";
|
|
625
|
-
}
|
|
625
|
+
}>;
|
|
626
626
|
};
|
|
627
627
|
};
|
|
628
628
|
};
|
|
@@ -637,14 +637,14 @@ export declare const DueDateColumnPlugin: {
|
|
|
637
637
|
handled: false;
|
|
638
638
|
} | {
|
|
639
639
|
handled: true;
|
|
640
|
-
data
|
|
640
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<`${number}-${number}-${number} ${number}:${number}:${number}`, db.Column<`${number}-${number}-${number} ${number}:${number}:${number}`, `${number}-${number}-${number} ${number}:${number}:${number}`>>> | undefined;
|
|
641
641
|
diagnostics: FluentDiagnostic[];
|
|
642
642
|
} | {
|
|
643
643
|
handled: true;
|
|
644
644
|
diagnostics: FluentDiagnostic[];
|
|
645
645
|
data: ObjectData<db.Typed<`${number}-${number}-${number} ${number}:${number}:${number}`, db.Column<`${number}-${number}-${number} ${number}:${number}:${number}`, `${number}-${number}-${number} ${number}:${number}:${number}`>> & {
|
|
646
646
|
readonly entityKind: "due_date";
|
|
647
|
-
}
|
|
647
|
+
}>;
|
|
648
648
|
};
|
|
649
649
|
};
|
|
650
650
|
};
|
|
@@ -659,14 +659,14 @@ export declare const IntegerDateColumnPlugin: {
|
|
|
659
659
|
handled: false;
|
|
660
660
|
} | {
|
|
661
661
|
handled: true;
|
|
662
|
-
data
|
|
662
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<number, db.Column<number, number>>> | undefined;
|
|
663
663
|
diagnostics: FluentDiagnostic[];
|
|
664
664
|
} | {
|
|
665
665
|
handled: true;
|
|
666
666
|
diagnostics: FluentDiagnostic[];
|
|
667
667
|
data: ObjectData<db.Typed<number, db.Column<number, number>> & {
|
|
668
668
|
readonly entityKind: "integer_date";
|
|
669
|
-
}
|
|
669
|
+
}>;
|
|
670
670
|
};
|
|
671
671
|
};
|
|
672
672
|
};
|
|
@@ -681,14 +681,14 @@ export declare const ScheduleDateTimeColumnPlugin: {
|
|
|
681
681
|
handled: false;
|
|
682
682
|
} | {
|
|
683
683
|
handled: true;
|
|
684
|
-
data
|
|
684
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string, db.Column<string, string>>> | undefined;
|
|
685
685
|
diagnostics: FluentDiagnostic[];
|
|
686
686
|
} | {
|
|
687
687
|
handled: true;
|
|
688
688
|
diagnostics: FluentDiagnostic[];
|
|
689
689
|
data: ObjectData<db.Typed<string, db.Column<string, string>> & {
|
|
690
690
|
readonly entityKind: "schedule_date_time";
|
|
691
|
-
}
|
|
691
|
+
}>;
|
|
692
692
|
};
|
|
693
693
|
};
|
|
694
694
|
};
|
|
@@ -703,14 +703,14 @@ export declare const OtherDateColumnPlugin: {
|
|
|
703
703
|
handled: false;
|
|
704
704
|
} | {
|
|
705
705
|
handled: true;
|
|
706
|
-
data
|
|
706
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<`${number}-${number}-${number}`, db.Column<`${number}-${number}-${number}`, `${number}-${number}-${number}`>>> | undefined;
|
|
707
707
|
diagnostics: FluentDiagnostic[];
|
|
708
708
|
} | {
|
|
709
709
|
handled: true;
|
|
710
710
|
diagnostics: FluentDiagnostic[];
|
|
711
711
|
data: ObjectData<db.Typed<`${number}-${number}-${number}`, db.Column<`${number}-${number}-${number}`, `${number}-${number}-${number}`>> & {
|
|
712
712
|
readonly entityKind: "date";
|
|
713
|
-
}
|
|
713
|
+
}>;
|
|
714
714
|
};
|
|
715
715
|
};
|
|
716
716
|
};
|
|
@@ -725,14 +725,14 @@ export declare const GenericColumnPlugin: {
|
|
|
725
725
|
handled: false;
|
|
726
726
|
} | {
|
|
727
727
|
handled: true;
|
|
728
|
-
data
|
|
728
|
+
data?: import("@servicenow/sdk-build-core").EntityData<db.Typed<string | number, db.GenericColumnType<db.Choices<string | number>, string | number, string | number, "none">>> | undefined;
|
|
729
729
|
diagnostics: FluentDiagnostic[];
|
|
730
730
|
} | {
|
|
731
731
|
handled: true;
|
|
732
732
|
diagnostics: FluentDiagnostic[];
|
|
733
733
|
data: ObjectData<db.Typed<string | number, db.GenericColumnType<db.Choices<string | number>, string | number, string | number, "none">> & {
|
|
734
734
|
readonly entityKind: "generic";
|
|
735
|
-
}
|
|
735
|
+
}>;
|
|
736
736
|
};
|
|
737
737
|
};
|
|
738
738
|
};
|