datocms-plugin-sdk 0.3.10 → 0.3.20
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/esm/types.d.ts +18 -0
- package/dist/types/types.d.ts +18 -0
- package/package.json +2 -2
- package/types.json +553 -111
package/dist/esm/types.d.ts
CHANGED
|
@@ -1039,6 +1039,20 @@ export declare type RenderPageAdditionalMethods = {
|
|
|
1039
1039
|
};
|
|
1040
1040
|
export declare type RenderPageMethods = RenderMethods & RenderPageAdditionalMethods;
|
|
1041
1041
|
export declare type RenderPagePropertiesAndMethods = RenderPageMethods & RenderPageProperties;
|
|
1042
|
+
export declare type PendingField = {
|
|
1043
|
+
id?: string;
|
|
1044
|
+
type: 'field';
|
|
1045
|
+
attributes: {
|
|
1046
|
+
api_key: Field['attributes']['api_key'];
|
|
1047
|
+
appearance: Field['attributes']['appearance'];
|
|
1048
|
+
default_value: Field['attributes']['default_value'];
|
|
1049
|
+
field_type: Field['attributes']['field_type'];
|
|
1050
|
+
hint: Field['attributes']['hint'];
|
|
1051
|
+
label: Field['attributes']['label'];
|
|
1052
|
+
localized: Field['attributes']['localized'];
|
|
1053
|
+
validators: Field['attributes']['validators'];
|
|
1054
|
+
};
|
|
1055
|
+
};
|
|
1042
1056
|
/**
|
|
1043
1057
|
* Information regarding the specific form that you need to render to let the
|
|
1044
1058
|
* end-user edit the configuration object of a field extension
|
|
@@ -1057,6 +1071,10 @@ export declare type RenderManualFieldExtensionConfigScreenAdditionalProperties =
|
|
|
1057
1071
|
* implementing the `validateManualFieldExtensionParameters` function)
|
|
1058
1072
|
*/
|
|
1059
1073
|
errors: Record<string, unknown>;
|
|
1074
|
+
/** The field entity that is being edited in the form */
|
|
1075
|
+
pendingField: PendingField;
|
|
1076
|
+
/** The model for the field being edited */
|
|
1077
|
+
itemType: ModelBlock;
|
|
1060
1078
|
};
|
|
1061
1079
|
export declare type RenderManualFieldExtensionConfigScreenProperties = RenderProperties & RenderManualFieldExtensionConfigScreenAdditionalProperties;
|
|
1062
1080
|
/**
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1039,6 +1039,20 @@ export declare type RenderPageAdditionalMethods = {
|
|
|
1039
1039
|
};
|
|
1040
1040
|
export declare type RenderPageMethods = RenderMethods & RenderPageAdditionalMethods;
|
|
1041
1041
|
export declare type RenderPagePropertiesAndMethods = RenderPageMethods & RenderPageProperties;
|
|
1042
|
+
export declare type PendingField = {
|
|
1043
|
+
id?: string;
|
|
1044
|
+
type: 'field';
|
|
1045
|
+
attributes: {
|
|
1046
|
+
api_key: Field['attributes']['api_key'];
|
|
1047
|
+
appearance: Field['attributes']['appearance'];
|
|
1048
|
+
default_value: Field['attributes']['default_value'];
|
|
1049
|
+
field_type: Field['attributes']['field_type'];
|
|
1050
|
+
hint: Field['attributes']['hint'];
|
|
1051
|
+
label: Field['attributes']['label'];
|
|
1052
|
+
localized: Field['attributes']['localized'];
|
|
1053
|
+
validators: Field['attributes']['validators'];
|
|
1054
|
+
};
|
|
1055
|
+
};
|
|
1042
1056
|
/**
|
|
1043
1057
|
* Information regarding the specific form that you need to render to let the
|
|
1044
1058
|
* end-user edit the configuration object of a field extension
|
|
@@ -1057,6 +1071,10 @@ export declare type RenderManualFieldExtensionConfigScreenAdditionalProperties =
|
|
|
1057
1071
|
* implementing the `validateManualFieldExtensionParameters` function)
|
|
1058
1072
|
*/
|
|
1059
1073
|
errors: Record<string, unknown>;
|
|
1074
|
+
/** The field entity that is being edited in the form */
|
|
1075
|
+
pendingField: PendingField;
|
|
1076
|
+
/** The model for the field being edited */
|
|
1077
|
+
itemType: ModelBlock;
|
|
1060
1078
|
};
|
|
1061
1079
|
export declare type RenderManualFieldExtensionConfigScreenProperties = RenderProperties & RenderManualFieldExtensionConfigScreenAdditionalProperties;
|
|
1062
1080
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "datocms-plugin-sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.20",
|
|
4
4
|
"description": "DatoCMS Plugin SDK",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"datocms",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"typedoc": "^0.22.8"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "e9754611c749055aa7827d7a6c2b6ced6377dc83"
|
|
45
45
|
}
|
package/types.json
CHANGED
|
@@ -3771,7 +3771,7 @@
|
|
|
3771
3771
|
"flags": {},
|
|
3772
3772
|
"type": {
|
|
3773
3773
|
"type": "reference",
|
|
3774
|
-
"id":
|
|
3774
|
+
"id": 535,
|
|
3775
3775
|
"name": "OnBootPropertiesAndMethods"
|
|
3776
3776
|
}
|
|
3777
3777
|
}
|
|
@@ -7170,7 +7170,7 @@
|
|
|
7170
7170
|
}
|
|
7171
7171
|
},
|
|
7172
7172
|
{
|
|
7173
|
-
"id":
|
|
7173
|
+
"id": 530,
|
|
7174
7174
|
"name": "OnBootAdditionalMethods",
|
|
7175
7175
|
"kind": 4194304,
|
|
7176
7176
|
"kindString": "Type alias",
|
|
@@ -7178,21 +7178,21 @@
|
|
|
7178
7178
|
"sources": [
|
|
7179
7179
|
{
|
|
7180
7180
|
"fileName": "types.ts",
|
|
7181
|
-
"line":
|
|
7181
|
+
"line": 1274,
|
|
7182
7182
|
"character": 12
|
|
7183
7183
|
}
|
|
7184
7184
|
],
|
|
7185
7185
|
"type": {
|
|
7186
7186
|
"type": "reflection",
|
|
7187
7187
|
"declaration": {
|
|
7188
|
-
"id":
|
|
7188
|
+
"id": 531,
|
|
7189
7189
|
"name": "__type",
|
|
7190
7190
|
"kind": 65536,
|
|
7191
7191
|
"kindString": "Type literal",
|
|
7192
7192
|
"flags": {},
|
|
7193
7193
|
"children": [
|
|
7194
7194
|
{
|
|
7195
|
-
"id":
|
|
7195
|
+
"id": 532,
|
|
7196
7196
|
"name": "getSettings",
|
|
7197
7197
|
"kind": 2048,
|
|
7198
7198
|
"kindString": "Method",
|
|
@@ -7200,13 +7200,13 @@
|
|
|
7200
7200
|
"sources": [
|
|
7201
7201
|
{
|
|
7202
7202
|
"fileName": "types.ts",
|
|
7203
|
-
"line":
|
|
7203
|
+
"line": 1275,
|
|
7204
7204
|
"character": 2
|
|
7205
7205
|
}
|
|
7206
7206
|
],
|
|
7207
7207
|
"signatures": [
|
|
7208
7208
|
{
|
|
7209
|
-
"id":
|
|
7209
|
+
"id": 533,
|
|
7210
7210
|
"name": "getSettings",
|
|
7211
7211
|
"kind": 4096,
|
|
7212
7212
|
"kindString": "Call signature",
|
|
@@ -7216,7 +7216,7 @@
|
|
|
7216
7216
|
"typeArguments": [
|
|
7217
7217
|
{
|
|
7218
7218
|
"type": "reference",
|
|
7219
|
-
"id":
|
|
7219
|
+
"id": 529,
|
|
7220
7220
|
"name": "OnBootProperties"
|
|
7221
7221
|
}
|
|
7222
7222
|
],
|
|
@@ -7231,14 +7231,14 @@
|
|
|
7231
7231
|
"title": "Methods",
|
|
7232
7232
|
"kind": 2048,
|
|
7233
7233
|
"children": [
|
|
7234
|
-
|
|
7234
|
+
532
|
|
7235
7235
|
]
|
|
7236
7236
|
}
|
|
7237
7237
|
],
|
|
7238
7238
|
"sources": [
|
|
7239
7239
|
{
|
|
7240
7240
|
"fileName": "types.ts",
|
|
7241
|
-
"line":
|
|
7241
|
+
"line": 1274,
|
|
7242
7242
|
"character": 38
|
|
7243
7243
|
}
|
|
7244
7244
|
]
|
|
@@ -7246,7 +7246,7 @@
|
|
|
7246
7246
|
}
|
|
7247
7247
|
},
|
|
7248
7248
|
{
|
|
7249
|
-
"id":
|
|
7249
|
+
"id": 526,
|
|
7250
7250
|
"name": "OnBootAdditionalProperties",
|
|
7251
7251
|
"kind": 4194304,
|
|
7252
7252
|
"kindString": "Type alias",
|
|
@@ -7254,21 +7254,21 @@
|
|
|
7254
7254
|
"sources": [
|
|
7255
7255
|
{
|
|
7256
7256
|
"fileName": "types.ts",
|
|
7257
|
-
"line":
|
|
7257
|
+
"line": 1268,
|
|
7258
7258
|
"character": 12
|
|
7259
7259
|
}
|
|
7260
7260
|
],
|
|
7261
7261
|
"type": {
|
|
7262
7262
|
"type": "reflection",
|
|
7263
7263
|
"declaration": {
|
|
7264
|
-
"id":
|
|
7264
|
+
"id": 527,
|
|
7265
7265
|
"name": "__type",
|
|
7266
7266
|
"kind": 65536,
|
|
7267
7267
|
"kindString": "Type literal",
|
|
7268
7268
|
"flags": {},
|
|
7269
7269
|
"children": [
|
|
7270
7270
|
{
|
|
7271
|
-
"id":
|
|
7271
|
+
"id": 528,
|
|
7272
7272
|
"name": "mode",
|
|
7273
7273
|
"kind": 1024,
|
|
7274
7274
|
"kindString": "Property",
|
|
@@ -7276,7 +7276,7 @@
|
|
|
7276
7276
|
"sources": [
|
|
7277
7277
|
{
|
|
7278
7278
|
"fileName": "types.ts",
|
|
7279
|
-
"line":
|
|
7279
|
+
"line": 1269,
|
|
7280
7280
|
"character": 2
|
|
7281
7281
|
}
|
|
7282
7282
|
],
|
|
@@ -7291,14 +7291,14 @@
|
|
|
7291
7291
|
"title": "Properties",
|
|
7292
7292
|
"kind": 1024,
|
|
7293
7293
|
"children": [
|
|
7294
|
-
|
|
7294
|
+
528
|
|
7295
7295
|
]
|
|
7296
7296
|
}
|
|
7297
7297
|
],
|
|
7298
7298
|
"sources": [
|
|
7299
7299
|
{
|
|
7300
7300
|
"fileName": "types.ts",
|
|
7301
|
-
"line":
|
|
7301
|
+
"line": 1268,
|
|
7302
7302
|
"character": 41
|
|
7303
7303
|
}
|
|
7304
7304
|
]
|
|
@@ -7320,12 +7320,12 @@
|
|
|
7320
7320
|
],
|
|
7321
7321
|
"type": {
|
|
7322
7322
|
"type": "reference",
|
|
7323
|
-
"id":
|
|
7323
|
+
"id": 535,
|
|
7324
7324
|
"name": "OnBootPropertiesAndMethods"
|
|
7325
7325
|
}
|
|
7326
7326
|
},
|
|
7327
7327
|
{
|
|
7328
|
-
"id":
|
|
7328
|
+
"id": 534,
|
|
7329
7329
|
"name": "OnBootMethods",
|
|
7330
7330
|
"kind": 4194304,
|
|
7331
7331
|
"kindString": "Type alias",
|
|
@@ -7333,7 +7333,7 @@
|
|
|
7333
7333
|
"sources": [
|
|
7334
7334
|
{
|
|
7335
7335
|
"fileName": "types.ts",
|
|
7336
|
-
"line":
|
|
7336
|
+
"line": 1278,
|
|
7337
7337
|
"character": 12
|
|
7338
7338
|
}
|
|
7339
7339
|
],
|
|
@@ -7347,14 +7347,14 @@
|
|
|
7347
7347
|
},
|
|
7348
7348
|
{
|
|
7349
7349
|
"type": "reference",
|
|
7350
|
-
"id":
|
|
7350
|
+
"id": 530,
|
|
7351
7351
|
"name": "OnBootAdditionalMethods"
|
|
7352
7352
|
}
|
|
7353
7353
|
]
|
|
7354
7354
|
}
|
|
7355
7355
|
},
|
|
7356
7356
|
{
|
|
7357
|
-
"id":
|
|
7357
|
+
"id": 529,
|
|
7358
7358
|
"name": "OnBootProperties",
|
|
7359
7359
|
"kind": 4194304,
|
|
7360
7360
|
"kindString": "Type alias",
|
|
@@ -7362,7 +7362,7 @@
|
|
|
7362
7362
|
"sources": [
|
|
7363
7363
|
{
|
|
7364
7364
|
"fileName": "types.ts",
|
|
7365
|
-
"line":
|
|
7365
|
+
"line": 1272,
|
|
7366
7366
|
"character": 12
|
|
7367
7367
|
}
|
|
7368
7368
|
],
|
|
@@ -7376,14 +7376,14 @@
|
|
|
7376
7376
|
},
|
|
7377
7377
|
{
|
|
7378
7378
|
"type": "reference",
|
|
7379
|
-
"id":
|
|
7379
|
+
"id": 526,
|
|
7380
7380
|
"name": "OnBootAdditionalProperties"
|
|
7381
7381
|
}
|
|
7382
7382
|
]
|
|
7383
7383
|
}
|
|
7384
7384
|
},
|
|
7385
7385
|
{
|
|
7386
|
-
"id":
|
|
7386
|
+
"id": 535,
|
|
7387
7387
|
"name": "OnBootPropertiesAndMethods",
|
|
7388
7388
|
"kind": 4194304,
|
|
7389
7389
|
"kindString": "Type alias",
|
|
@@ -7391,7 +7391,7 @@
|
|
|
7391
7391
|
"sources": [
|
|
7392
7392
|
{
|
|
7393
7393
|
"fileName": "types.ts",
|
|
7394
|
-
"line":
|
|
7394
|
+
"line": 1280,
|
|
7395
7395
|
"character": 12
|
|
7396
7396
|
}
|
|
7397
7397
|
],
|
|
@@ -7400,17 +7400,412 @@
|
|
|
7400
7400
|
"types": [
|
|
7401
7401
|
{
|
|
7402
7402
|
"type": "reference",
|
|
7403
|
-
"id":
|
|
7403
|
+
"id": 534,
|
|
7404
7404
|
"name": "OnBootMethods"
|
|
7405
7405
|
},
|
|
7406
7406
|
{
|
|
7407
7407
|
"type": "reference",
|
|
7408
|
-
"id":
|
|
7408
|
+
"id": 529,
|
|
7409
7409
|
"name": "OnBootProperties"
|
|
7410
7410
|
}
|
|
7411
7411
|
]
|
|
7412
7412
|
}
|
|
7413
7413
|
},
|
|
7414
|
+
{
|
|
7415
|
+
"id": 484,
|
|
7416
|
+
"name": "PendingField",
|
|
7417
|
+
"kind": 4194304,
|
|
7418
|
+
"kindString": "Type alias",
|
|
7419
|
+
"flags": {},
|
|
7420
|
+
"sources": [
|
|
7421
|
+
{
|
|
7422
|
+
"fileName": "types.ts",
|
|
7423
|
+
"line": 1180,
|
|
7424
|
+
"character": 12
|
|
7425
|
+
}
|
|
7426
|
+
],
|
|
7427
|
+
"type": {
|
|
7428
|
+
"type": "reflection",
|
|
7429
|
+
"declaration": {
|
|
7430
|
+
"id": 485,
|
|
7431
|
+
"name": "__type",
|
|
7432
|
+
"kind": 65536,
|
|
7433
|
+
"kindString": "Type literal",
|
|
7434
|
+
"flags": {},
|
|
7435
|
+
"children": [
|
|
7436
|
+
{
|
|
7437
|
+
"id": 488,
|
|
7438
|
+
"name": "attributes",
|
|
7439
|
+
"kind": 1024,
|
|
7440
|
+
"kindString": "Property",
|
|
7441
|
+
"flags": {},
|
|
7442
|
+
"sources": [
|
|
7443
|
+
{
|
|
7444
|
+
"fileName": "types.ts",
|
|
7445
|
+
"line": 1183,
|
|
7446
|
+
"character": 2
|
|
7447
|
+
}
|
|
7448
|
+
],
|
|
7449
|
+
"type": {
|
|
7450
|
+
"type": "reflection",
|
|
7451
|
+
"declaration": {
|
|
7452
|
+
"id": 489,
|
|
7453
|
+
"name": "__type",
|
|
7454
|
+
"kind": 65536,
|
|
7455
|
+
"kindString": "Type literal",
|
|
7456
|
+
"flags": {},
|
|
7457
|
+
"children": [
|
|
7458
|
+
{
|
|
7459
|
+
"id": 490,
|
|
7460
|
+
"name": "api_key",
|
|
7461
|
+
"kind": 1024,
|
|
7462
|
+
"kindString": "Property",
|
|
7463
|
+
"flags": {},
|
|
7464
|
+
"sources": [
|
|
7465
|
+
{
|
|
7466
|
+
"fileName": "types.ts",
|
|
7467
|
+
"line": 1184,
|
|
7468
|
+
"character": 4
|
|
7469
|
+
}
|
|
7470
|
+
],
|
|
7471
|
+
"type": {
|
|
7472
|
+
"type": "indexedAccess",
|
|
7473
|
+
"indexType": {
|
|
7474
|
+
"type": "literal",
|
|
7475
|
+
"value": "api_key"
|
|
7476
|
+
},
|
|
7477
|
+
"objectType": {
|
|
7478
|
+
"type": "indexedAccess",
|
|
7479
|
+
"indexType": {
|
|
7480
|
+
"type": "literal",
|
|
7481
|
+
"value": "attributes"
|
|
7482
|
+
},
|
|
7483
|
+
"objectType": {
|
|
7484
|
+
"type": "reference",
|
|
7485
|
+
"id": 5,
|
|
7486
|
+
"name": "Field"
|
|
7487
|
+
}
|
|
7488
|
+
}
|
|
7489
|
+
}
|
|
7490
|
+
},
|
|
7491
|
+
{
|
|
7492
|
+
"id": 491,
|
|
7493
|
+
"name": "appearance",
|
|
7494
|
+
"kind": 1024,
|
|
7495
|
+
"kindString": "Property",
|
|
7496
|
+
"flags": {},
|
|
7497
|
+
"sources": [
|
|
7498
|
+
{
|
|
7499
|
+
"fileName": "types.ts",
|
|
7500
|
+
"line": 1185,
|
|
7501
|
+
"character": 4
|
|
7502
|
+
}
|
|
7503
|
+
],
|
|
7504
|
+
"type": {
|
|
7505
|
+
"type": "indexedAccess",
|
|
7506
|
+
"indexType": {
|
|
7507
|
+
"type": "literal",
|
|
7508
|
+
"value": "appearance"
|
|
7509
|
+
},
|
|
7510
|
+
"objectType": {
|
|
7511
|
+
"type": "indexedAccess",
|
|
7512
|
+
"indexType": {
|
|
7513
|
+
"type": "literal",
|
|
7514
|
+
"value": "attributes"
|
|
7515
|
+
},
|
|
7516
|
+
"objectType": {
|
|
7517
|
+
"type": "reference",
|
|
7518
|
+
"id": 5,
|
|
7519
|
+
"name": "Field"
|
|
7520
|
+
}
|
|
7521
|
+
}
|
|
7522
|
+
}
|
|
7523
|
+
},
|
|
7524
|
+
{
|
|
7525
|
+
"id": 492,
|
|
7526
|
+
"name": "default_value",
|
|
7527
|
+
"kind": 1024,
|
|
7528
|
+
"kindString": "Property",
|
|
7529
|
+
"flags": {},
|
|
7530
|
+
"sources": [
|
|
7531
|
+
{
|
|
7532
|
+
"fileName": "types.ts",
|
|
7533
|
+
"line": 1186,
|
|
7534
|
+
"character": 4
|
|
7535
|
+
}
|
|
7536
|
+
],
|
|
7537
|
+
"type": {
|
|
7538
|
+
"type": "indexedAccess",
|
|
7539
|
+
"indexType": {
|
|
7540
|
+
"type": "literal",
|
|
7541
|
+
"value": "default_value"
|
|
7542
|
+
},
|
|
7543
|
+
"objectType": {
|
|
7544
|
+
"type": "indexedAccess",
|
|
7545
|
+
"indexType": {
|
|
7546
|
+
"type": "literal",
|
|
7547
|
+
"value": "attributes"
|
|
7548
|
+
},
|
|
7549
|
+
"objectType": {
|
|
7550
|
+
"type": "reference",
|
|
7551
|
+
"id": 5,
|
|
7552
|
+
"name": "Field"
|
|
7553
|
+
}
|
|
7554
|
+
}
|
|
7555
|
+
}
|
|
7556
|
+
},
|
|
7557
|
+
{
|
|
7558
|
+
"id": 493,
|
|
7559
|
+
"name": "field_type",
|
|
7560
|
+
"kind": 1024,
|
|
7561
|
+
"kindString": "Property",
|
|
7562
|
+
"flags": {},
|
|
7563
|
+
"sources": [
|
|
7564
|
+
{
|
|
7565
|
+
"fileName": "types.ts",
|
|
7566
|
+
"line": 1187,
|
|
7567
|
+
"character": 4
|
|
7568
|
+
}
|
|
7569
|
+
],
|
|
7570
|
+
"type": {
|
|
7571
|
+
"type": "indexedAccess",
|
|
7572
|
+
"indexType": {
|
|
7573
|
+
"type": "literal",
|
|
7574
|
+
"value": "field_type"
|
|
7575
|
+
},
|
|
7576
|
+
"objectType": {
|
|
7577
|
+
"type": "indexedAccess",
|
|
7578
|
+
"indexType": {
|
|
7579
|
+
"type": "literal",
|
|
7580
|
+
"value": "attributes"
|
|
7581
|
+
},
|
|
7582
|
+
"objectType": {
|
|
7583
|
+
"type": "reference",
|
|
7584
|
+
"id": 5,
|
|
7585
|
+
"name": "Field"
|
|
7586
|
+
}
|
|
7587
|
+
}
|
|
7588
|
+
}
|
|
7589
|
+
},
|
|
7590
|
+
{
|
|
7591
|
+
"id": 494,
|
|
7592
|
+
"name": "hint",
|
|
7593
|
+
"kind": 1024,
|
|
7594
|
+
"kindString": "Property",
|
|
7595
|
+
"flags": {},
|
|
7596
|
+
"sources": [
|
|
7597
|
+
{
|
|
7598
|
+
"fileName": "types.ts",
|
|
7599
|
+
"line": 1188,
|
|
7600
|
+
"character": 4
|
|
7601
|
+
}
|
|
7602
|
+
],
|
|
7603
|
+
"type": {
|
|
7604
|
+
"type": "indexedAccess",
|
|
7605
|
+
"indexType": {
|
|
7606
|
+
"type": "literal",
|
|
7607
|
+
"value": "hint"
|
|
7608
|
+
},
|
|
7609
|
+
"objectType": {
|
|
7610
|
+
"type": "indexedAccess",
|
|
7611
|
+
"indexType": {
|
|
7612
|
+
"type": "literal",
|
|
7613
|
+
"value": "attributes"
|
|
7614
|
+
},
|
|
7615
|
+
"objectType": {
|
|
7616
|
+
"type": "reference",
|
|
7617
|
+
"id": 5,
|
|
7618
|
+
"name": "Field"
|
|
7619
|
+
}
|
|
7620
|
+
}
|
|
7621
|
+
}
|
|
7622
|
+
},
|
|
7623
|
+
{
|
|
7624
|
+
"id": 495,
|
|
7625
|
+
"name": "label",
|
|
7626
|
+
"kind": 1024,
|
|
7627
|
+
"kindString": "Property",
|
|
7628
|
+
"flags": {},
|
|
7629
|
+
"sources": [
|
|
7630
|
+
{
|
|
7631
|
+
"fileName": "types.ts",
|
|
7632
|
+
"line": 1189,
|
|
7633
|
+
"character": 4
|
|
7634
|
+
}
|
|
7635
|
+
],
|
|
7636
|
+
"type": {
|
|
7637
|
+
"type": "indexedAccess",
|
|
7638
|
+
"indexType": {
|
|
7639
|
+
"type": "literal",
|
|
7640
|
+
"value": "label"
|
|
7641
|
+
},
|
|
7642
|
+
"objectType": {
|
|
7643
|
+
"type": "indexedAccess",
|
|
7644
|
+
"indexType": {
|
|
7645
|
+
"type": "literal",
|
|
7646
|
+
"value": "attributes"
|
|
7647
|
+
},
|
|
7648
|
+
"objectType": {
|
|
7649
|
+
"type": "reference",
|
|
7650
|
+
"id": 5,
|
|
7651
|
+
"name": "Field"
|
|
7652
|
+
}
|
|
7653
|
+
}
|
|
7654
|
+
}
|
|
7655
|
+
},
|
|
7656
|
+
{
|
|
7657
|
+
"id": 496,
|
|
7658
|
+
"name": "localized",
|
|
7659
|
+
"kind": 1024,
|
|
7660
|
+
"kindString": "Property",
|
|
7661
|
+
"flags": {},
|
|
7662
|
+
"sources": [
|
|
7663
|
+
{
|
|
7664
|
+
"fileName": "types.ts",
|
|
7665
|
+
"line": 1190,
|
|
7666
|
+
"character": 4
|
|
7667
|
+
}
|
|
7668
|
+
],
|
|
7669
|
+
"type": {
|
|
7670
|
+
"type": "indexedAccess",
|
|
7671
|
+
"indexType": {
|
|
7672
|
+
"type": "literal",
|
|
7673
|
+
"value": "localized"
|
|
7674
|
+
},
|
|
7675
|
+
"objectType": {
|
|
7676
|
+
"type": "indexedAccess",
|
|
7677
|
+
"indexType": {
|
|
7678
|
+
"type": "literal",
|
|
7679
|
+
"value": "attributes"
|
|
7680
|
+
},
|
|
7681
|
+
"objectType": {
|
|
7682
|
+
"type": "reference",
|
|
7683
|
+
"id": 5,
|
|
7684
|
+
"name": "Field"
|
|
7685
|
+
}
|
|
7686
|
+
}
|
|
7687
|
+
}
|
|
7688
|
+
},
|
|
7689
|
+
{
|
|
7690
|
+
"id": 497,
|
|
7691
|
+
"name": "validators",
|
|
7692
|
+
"kind": 1024,
|
|
7693
|
+
"kindString": "Property",
|
|
7694
|
+
"flags": {},
|
|
7695
|
+
"sources": [
|
|
7696
|
+
{
|
|
7697
|
+
"fileName": "types.ts",
|
|
7698
|
+
"line": 1191,
|
|
7699
|
+
"character": 4
|
|
7700
|
+
}
|
|
7701
|
+
],
|
|
7702
|
+
"type": {
|
|
7703
|
+
"type": "indexedAccess",
|
|
7704
|
+
"indexType": {
|
|
7705
|
+
"type": "literal",
|
|
7706
|
+
"value": "validators"
|
|
7707
|
+
},
|
|
7708
|
+
"objectType": {
|
|
7709
|
+
"type": "indexedAccess",
|
|
7710
|
+
"indexType": {
|
|
7711
|
+
"type": "literal",
|
|
7712
|
+
"value": "attributes"
|
|
7713
|
+
},
|
|
7714
|
+
"objectType": {
|
|
7715
|
+
"type": "reference",
|
|
7716
|
+
"id": 5,
|
|
7717
|
+
"name": "Field"
|
|
7718
|
+
}
|
|
7719
|
+
}
|
|
7720
|
+
}
|
|
7721
|
+
}
|
|
7722
|
+
],
|
|
7723
|
+
"groups": [
|
|
7724
|
+
{
|
|
7725
|
+
"title": "Properties",
|
|
7726
|
+
"kind": 1024,
|
|
7727
|
+
"children": [
|
|
7728
|
+
490,
|
|
7729
|
+
491,
|
|
7730
|
+
492,
|
|
7731
|
+
493,
|
|
7732
|
+
494,
|
|
7733
|
+
495,
|
|
7734
|
+
496,
|
|
7735
|
+
497
|
|
7736
|
+
]
|
|
7737
|
+
}
|
|
7738
|
+
],
|
|
7739
|
+
"sources": [
|
|
7740
|
+
{
|
|
7741
|
+
"fileName": "types.ts",
|
|
7742
|
+
"line": 1183,
|
|
7743
|
+
"character": 14
|
|
7744
|
+
}
|
|
7745
|
+
]
|
|
7746
|
+
}
|
|
7747
|
+
}
|
|
7748
|
+
},
|
|
7749
|
+
{
|
|
7750
|
+
"id": 486,
|
|
7751
|
+
"name": "id",
|
|
7752
|
+
"kind": 1024,
|
|
7753
|
+
"kindString": "Property",
|
|
7754
|
+
"flags": {
|
|
7755
|
+
"isOptional": true
|
|
7756
|
+
},
|
|
7757
|
+
"sources": [
|
|
7758
|
+
{
|
|
7759
|
+
"fileName": "types.ts",
|
|
7760
|
+
"line": 1181,
|
|
7761
|
+
"character": 2
|
|
7762
|
+
}
|
|
7763
|
+
],
|
|
7764
|
+
"type": {
|
|
7765
|
+
"type": "intrinsic",
|
|
7766
|
+
"name": "string"
|
|
7767
|
+
}
|
|
7768
|
+
},
|
|
7769
|
+
{
|
|
7770
|
+
"id": 487,
|
|
7771
|
+
"name": "type",
|
|
7772
|
+
"kind": 1024,
|
|
7773
|
+
"kindString": "Property",
|
|
7774
|
+
"flags": {},
|
|
7775
|
+
"sources": [
|
|
7776
|
+
{
|
|
7777
|
+
"fileName": "types.ts",
|
|
7778
|
+
"line": 1182,
|
|
7779
|
+
"character": 2
|
|
7780
|
+
}
|
|
7781
|
+
],
|
|
7782
|
+
"type": {
|
|
7783
|
+
"type": "literal",
|
|
7784
|
+
"value": "field"
|
|
7785
|
+
}
|
|
7786
|
+
}
|
|
7787
|
+
],
|
|
7788
|
+
"groups": [
|
|
7789
|
+
{
|
|
7790
|
+
"title": "Properties",
|
|
7791
|
+
"kind": 1024,
|
|
7792
|
+
"children": [
|
|
7793
|
+
488,
|
|
7794
|
+
486,
|
|
7795
|
+
487
|
|
7796
|
+
]
|
|
7797
|
+
}
|
|
7798
|
+
],
|
|
7799
|
+
"sources": [
|
|
7800
|
+
{
|
|
7801
|
+
"fileName": "types.ts",
|
|
7802
|
+
"line": 1180,
|
|
7803
|
+
"character": 27
|
|
7804
|
+
}
|
|
7805
|
+
]
|
|
7806
|
+
}
|
|
7807
|
+
}
|
|
7808
|
+
},
|
|
7414
7809
|
{
|
|
7415
7810
|
"id": 273,
|
|
7416
7811
|
"name": "RenderAdditionalProperties",
|
|
@@ -7658,7 +8053,7 @@
|
|
|
7658
8053
|
}
|
|
7659
8054
|
},
|
|
7660
8055
|
{
|
|
7661
|
-
"id":
|
|
8056
|
+
"id": 520,
|
|
7662
8057
|
"name": "RenderConfigScreenAdditionalMethods",
|
|
7663
8058
|
"kind": 4194304,
|
|
7664
8059
|
"kindString": "Type alias",
|
|
@@ -7669,21 +8064,21 @@
|
|
|
7669
8064
|
"sources": [
|
|
7670
8065
|
{
|
|
7671
8066
|
"fileName": "types.ts",
|
|
7672
|
-
"line":
|
|
8067
|
+
"line": 1257,
|
|
7673
8068
|
"character": 12
|
|
7674
8069
|
}
|
|
7675
8070
|
],
|
|
7676
8071
|
"type": {
|
|
7677
8072
|
"type": "reflection",
|
|
7678
8073
|
"declaration": {
|
|
7679
|
-
"id":
|
|
8074
|
+
"id": 521,
|
|
7680
8075
|
"name": "__type",
|
|
7681
8076
|
"kind": 65536,
|
|
7682
8077
|
"kindString": "Type literal",
|
|
7683
8078
|
"flags": {},
|
|
7684
8079
|
"children": [
|
|
7685
8080
|
{
|
|
7686
|
-
"id":
|
|
8081
|
+
"id": 522,
|
|
7687
8082
|
"name": "getSettings",
|
|
7688
8083
|
"kind": 2048,
|
|
7689
8084
|
"kindString": "Method",
|
|
@@ -7691,13 +8086,13 @@
|
|
|
7691
8086
|
"sources": [
|
|
7692
8087
|
{
|
|
7693
8088
|
"fileName": "types.ts",
|
|
7694
|
-
"line":
|
|
8089
|
+
"line": 1258,
|
|
7695
8090
|
"character": 2
|
|
7696
8091
|
}
|
|
7697
8092
|
],
|
|
7698
8093
|
"signatures": [
|
|
7699
8094
|
{
|
|
7700
|
-
"id":
|
|
8095
|
+
"id": 523,
|
|
7701
8096
|
"name": "getSettings",
|
|
7702
8097
|
"kind": 4096,
|
|
7703
8098
|
"kindString": "Call signature",
|
|
@@ -7707,7 +8102,7 @@
|
|
|
7707
8102
|
"typeArguments": [
|
|
7708
8103
|
{
|
|
7709
8104
|
"type": "reference",
|
|
7710
|
-
"id":
|
|
8105
|
+
"id": 519,
|
|
7711
8106
|
"name": "RenderConfigScreenProperties"
|
|
7712
8107
|
}
|
|
7713
8108
|
],
|
|
@@ -7722,14 +8117,14 @@
|
|
|
7722
8117
|
"title": "Methods",
|
|
7723
8118
|
"kind": 2048,
|
|
7724
8119
|
"children": [
|
|
7725
|
-
|
|
8120
|
+
522
|
|
7726
8121
|
]
|
|
7727
8122
|
}
|
|
7728
8123
|
],
|
|
7729
8124
|
"sources": [
|
|
7730
8125
|
{
|
|
7731
8126
|
"fileName": "types.ts",
|
|
7732
|
-
"line":
|
|
8127
|
+
"line": 1257,
|
|
7733
8128
|
"character": 50
|
|
7734
8129
|
}
|
|
7735
8130
|
]
|
|
@@ -7737,7 +8132,7 @@
|
|
|
7737
8132
|
}
|
|
7738
8133
|
},
|
|
7739
8134
|
{
|
|
7740
|
-
"id":
|
|
8135
|
+
"id": 516,
|
|
7741
8136
|
"name": "RenderConfigScreenAdditionalProperties",
|
|
7742
8137
|
"kind": 4194304,
|
|
7743
8138
|
"kindString": "Type alias",
|
|
@@ -7745,21 +8140,21 @@
|
|
|
7745
8140
|
"sources": [
|
|
7746
8141
|
{
|
|
7747
8142
|
"fileName": "types.ts",
|
|
7748
|
-
"line":
|
|
8143
|
+
"line": 1249,
|
|
7749
8144
|
"character": 12
|
|
7750
8145
|
}
|
|
7751
8146
|
],
|
|
7752
8147
|
"type": {
|
|
7753
8148
|
"type": "reflection",
|
|
7754
8149
|
"declaration": {
|
|
7755
|
-
"id":
|
|
8150
|
+
"id": 517,
|
|
7756
8151
|
"name": "__type",
|
|
7757
8152
|
"kind": 65536,
|
|
7758
8153
|
"kindString": "Type literal",
|
|
7759
8154
|
"flags": {},
|
|
7760
8155
|
"children": [
|
|
7761
8156
|
{
|
|
7762
|
-
"id":
|
|
8157
|
+
"id": 518,
|
|
7763
8158
|
"name": "mode",
|
|
7764
8159
|
"kind": 1024,
|
|
7765
8160
|
"kindString": "Property",
|
|
@@ -7767,7 +8162,7 @@
|
|
|
7767
8162
|
"sources": [
|
|
7768
8163
|
{
|
|
7769
8164
|
"fileName": "types.ts",
|
|
7770
|
-
"line":
|
|
8165
|
+
"line": 1250,
|
|
7771
8166
|
"character": 2
|
|
7772
8167
|
}
|
|
7773
8168
|
],
|
|
@@ -7782,14 +8177,14 @@
|
|
|
7782
8177
|
"title": "Properties",
|
|
7783
8178
|
"kind": 1024,
|
|
7784
8179
|
"children": [
|
|
7785
|
-
|
|
8180
|
+
518
|
|
7786
8181
|
]
|
|
7787
8182
|
}
|
|
7788
8183
|
],
|
|
7789
8184
|
"sources": [
|
|
7790
8185
|
{
|
|
7791
8186
|
"fileName": "types.ts",
|
|
7792
|
-
"line":
|
|
8187
|
+
"line": 1249,
|
|
7793
8188
|
"character": 53
|
|
7794
8189
|
}
|
|
7795
8190
|
]
|
|
@@ -7814,7 +8209,7 @@
|
|
|
7814
8209
|
"types": [
|
|
7815
8210
|
{
|
|
7816
8211
|
"type": "reference",
|
|
7817
|
-
"id":
|
|
8212
|
+
"id": 525,
|
|
7818
8213
|
"name": "RenderConfigScreenPropertiesAndMethods"
|
|
7819
8214
|
},
|
|
7820
8215
|
{
|
|
@@ -7826,7 +8221,7 @@
|
|
|
7826
8221
|
}
|
|
7827
8222
|
},
|
|
7828
8223
|
{
|
|
7829
|
-
"id":
|
|
8224
|
+
"id": 524,
|
|
7830
8225
|
"name": "RenderConfigScreenMethods",
|
|
7831
8226
|
"kind": 4194304,
|
|
7832
8227
|
"kindString": "Type alias",
|
|
@@ -7834,7 +8229,7 @@
|
|
|
7834
8229
|
"sources": [
|
|
7835
8230
|
{
|
|
7836
8231
|
"fileName": "types.ts",
|
|
7837
|
-
"line":
|
|
8232
|
+
"line": 1261,
|
|
7838
8233
|
"character": 12
|
|
7839
8234
|
}
|
|
7840
8235
|
],
|
|
@@ -7853,14 +8248,14 @@
|
|
|
7853
8248
|
},
|
|
7854
8249
|
{
|
|
7855
8250
|
"type": "reference",
|
|
7856
|
-
"id":
|
|
8251
|
+
"id": 520,
|
|
7857
8252
|
"name": "RenderConfigScreenAdditionalMethods"
|
|
7858
8253
|
}
|
|
7859
8254
|
]
|
|
7860
8255
|
}
|
|
7861
8256
|
},
|
|
7862
8257
|
{
|
|
7863
|
-
"id":
|
|
8258
|
+
"id": 519,
|
|
7864
8259
|
"name": "RenderConfigScreenProperties",
|
|
7865
8260
|
"kind": 4194304,
|
|
7866
8261
|
"kindString": "Type alias",
|
|
@@ -7868,7 +8263,7 @@
|
|
|
7868
8263
|
"sources": [
|
|
7869
8264
|
{
|
|
7870
8265
|
"fileName": "types.ts",
|
|
7871
|
-
"line":
|
|
8266
|
+
"line": 1253,
|
|
7872
8267
|
"character": 12
|
|
7873
8268
|
}
|
|
7874
8269
|
],
|
|
@@ -7882,14 +8277,14 @@
|
|
|
7882
8277
|
},
|
|
7883
8278
|
{
|
|
7884
8279
|
"type": "reference",
|
|
7885
|
-
"id":
|
|
8280
|
+
"id": 516,
|
|
7886
8281
|
"name": "RenderConfigScreenAdditionalProperties"
|
|
7887
8282
|
}
|
|
7888
8283
|
]
|
|
7889
8284
|
}
|
|
7890
8285
|
},
|
|
7891
8286
|
{
|
|
7892
|
-
"id":
|
|
8287
|
+
"id": 525,
|
|
7893
8288
|
"name": "RenderConfigScreenPropertiesAndMethods",
|
|
7894
8289
|
"kind": 4194304,
|
|
7895
8290
|
"kindString": "Type alias",
|
|
@@ -7897,7 +8292,7 @@
|
|
|
7897
8292
|
"sources": [
|
|
7898
8293
|
{
|
|
7899
8294
|
"fileName": "types.ts",
|
|
7900
|
-
"line":
|
|
8295
|
+
"line": 1265,
|
|
7901
8296
|
"character": 12
|
|
7902
8297
|
}
|
|
7903
8298
|
],
|
|
@@ -7906,12 +8301,12 @@
|
|
|
7906
8301
|
"types": [
|
|
7907
8302
|
{
|
|
7908
8303
|
"type": "reference",
|
|
7909
|
-
"id":
|
|
8304
|
+
"id": 524,
|
|
7910
8305
|
"name": "RenderConfigScreenMethods"
|
|
7911
8306
|
},
|
|
7912
8307
|
{
|
|
7913
8308
|
"type": "reference",
|
|
7914
|
-
"id":
|
|
8309
|
+
"id": 519,
|
|
7915
8310
|
"name": "RenderConfigScreenProperties"
|
|
7916
8311
|
}
|
|
7917
8312
|
]
|
|
@@ -8377,7 +8772,7 @@
|
|
|
8377
8772
|
}
|
|
8378
8773
|
},
|
|
8379
8774
|
{
|
|
8380
|
-
"id":
|
|
8775
|
+
"id": 507,
|
|
8381
8776
|
"name": "RenderManualFieldExtensionConfigScreenAdditionalMethods",
|
|
8382
8777
|
"kind": 4194304,
|
|
8383
8778
|
"kindString": "Type alias",
|
|
@@ -8388,21 +8783,21 @@
|
|
|
8388
8783
|
"sources": [
|
|
8389
8784
|
{
|
|
8390
8785
|
"fileName": "types.ts",
|
|
8391
|
-
"line":
|
|
8786
|
+
"line": 1228,
|
|
8392
8787
|
"character": 12
|
|
8393
8788
|
}
|
|
8394
8789
|
],
|
|
8395
8790
|
"type": {
|
|
8396
8791
|
"type": "reflection",
|
|
8397
8792
|
"declaration": {
|
|
8398
|
-
"id":
|
|
8793
|
+
"id": 508,
|
|
8399
8794
|
"name": "__type",
|
|
8400
8795
|
"kind": 65536,
|
|
8401
8796
|
"kindString": "Type literal",
|
|
8402
8797
|
"flags": {},
|
|
8403
8798
|
"children": [
|
|
8404
8799
|
{
|
|
8405
|
-
"id":
|
|
8800
|
+
"id": 509,
|
|
8406
8801
|
"name": "getSettings",
|
|
8407
8802
|
"kind": 2048,
|
|
8408
8803
|
"kindString": "Method",
|
|
@@ -8410,13 +8805,13 @@
|
|
|
8410
8805
|
"sources": [
|
|
8411
8806
|
{
|
|
8412
8807
|
"fileName": "types.ts",
|
|
8413
|
-
"line":
|
|
8808
|
+
"line": 1229,
|
|
8414
8809
|
"character": 2
|
|
8415
8810
|
}
|
|
8416
8811
|
],
|
|
8417
8812
|
"signatures": [
|
|
8418
8813
|
{
|
|
8419
|
-
"id":
|
|
8814
|
+
"id": 510,
|
|
8420
8815
|
"name": "getSettings",
|
|
8421
8816
|
"kind": 4096,
|
|
8422
8817
|
"kindString": "Call signature",
|
|
@@ -8426,7 +8821,7 @@
|
|
|
8426
8821
|
"typeArguments": [
|
|
8427
8822
|
{
|
|
8428
8823
|
"type": "reference",
|
|
8429
|
-
"id":
|
|
8824
|
+
"id": 506,
|
|
8430
8825
|
"name": "RenderManualFieldExtensionConfigScreenProperties"
|
|
8431
8826
|
}
|
|
8432
8827
|
],
|
|
@@ -8436,7 +8831,7 @@
|
|
|
8436
8831
|
]
|
|
8437
8832
|
},
|
|
8438
8833
|
{
|
|
8439
|
-
"id":
|
|
8834
|
+
"id": 511,
|
|
8440
8835
|
"name": "setParameters",
|
|
8441
8836
|
"kind": 2048,
|
|
8442
8837
|
"kindString": "Method",
|
|
@@ -8444,13 +8839,13 @@
|
|
|
8444
8839
|
"sources": [
|
|
8445
8840
|
{
|
|
8446
8841
|
"fileName": "types.ts",
|
|
8447
|
-
"line":
|
|
8842
|
+
"line": 1239,
|
|
8448
8843
|
"character": 2
|
|
8449
8844
|
}
|
|
8450
8845
|
],
|
|
8451
8846
|
"signatures": [
|
|
8452
8847
|
{
|
|
8453
|
-
"id":
|
|
8848
|
+
"id": 512,
|
|
8454
8849
|
"name": "setParameters",
|
|
8455
8850
|
"kind": 4096,
|
|
8456
8851
|
"kindString": "Call signature",
|
|
@@ -8466,7 +8861,7 @@
|
|
|
8466
8861
|
},
|
|
8467
8862
|
"parameters": [
|
|
8468
8863
|
{
|
|
8469
|
-
"id":
|
|
8864
|
+
"id": 513,
|
|
8470
8865
|
"name": "params",
|
|
8471
8866
|
"kind": 32768,
|
|
8472
8867
|
"kindString": "Parameter",
|
|
@@ -8506,15 +8901,15 @@
|
|
|
8506
8901
|
"title": "Methods",
|
|
8507
8902
|
"kind": 2048,
|
|
8508
8903
|
"children": [
|
|
8509
|
-
|
|
8510
|
-
|
|
8904
|
+
509,
|
|
8905
|
+
511
|
|
8511
8906
|
]
|
|
8512
8907
|
}
|
|
8513
8908
|
],
|
|
8514
8909
|
"sources": [
|
|
8515
8910
|
{
|
|
8516
8911
|
"fileName": "types.ts",
|
|
8517
|
-
"line":
|
|
8912
|
+
"line": 1228,
|
|
8518
8913
|
"character": 70
|
|
8519
8914
|
}
|
|
8520
8915
|
]
|
|
@@ -8522,7 +8917,7 @@
|
|
|
8522
8917
|
}
|
|
8523
8918
|
},
|
|
8524
8919
|
{
|
|
8525
|
-
"id":
|
|
8920
|
+
"id": 498,
|
|
8526
8921
|
"name": "RenderManualFieldExtensionConfigScreenAdditionalProperties",
|
|
8527
8922
|
"kind": 4194304,
|
|
8528
8923
|
"kindString": "Type alias",
|
|
@@ -8533,21 +8928,21 @@
|
|
|
8533
8928
|
"sources": [
|
|
8534
8929
|
{
|
|
8535
8930
|
"fileName": "types.ts",
|
|
8536
|
-
"line":
|
|
8931
|
+
"line": 1199,
|
|
8537
8932
|
"character": 12
|
|
8538
8933
|
}
|
|
8539
8934
|
],
|
|
8540
8935
|
"type": {
|
|
8541
8936
|
"type": "reflection",
|
|
8542
8937
|
"declaration": {
|
|
8543
|
-
"id":
|
|
8938
|
+
"id": 499,
|
|
8544
8939
|
"name": "__type",
|
|
8545
8940
|
"kind": 65536,
|
|
8546
8941
|
"kindString": "Type literal",
|
|
8547
8942
|
"flags": {},
|
|
8548
8943
|
"children": [
|
|
8549
8944
|
{
|
|
8550
|
-
"id":
|
|
8945
|
+
"id": 503,
|
|
8551
8946
|
"name": "errors",
|
|
8552
8947
|
"kind": 1024,
|
|
8553
8948
|
"kindString": "Property",
|
|
@@ -8558,7 +8953,7 @@
|
|
|
8558
8953
|
"sources": [
|
|
8559
8954
|
{
|
|
8560
8955
|
"fileName": "types.ts",
|
|
8561
|
-
"line":
|
|
8956
|
+
"line": 1212,
|
|
8562
8957
|
"character": 2
|
|
8563
8958
|
}
|
|
8564
8959
|
],
|
|
@@ -8578,7 +8973,7 @@
|
|
|
8578
8973
|
}
|
|
8579
8974
|
},
|
|
8580
8975
|
{
|
|
8581
|
-
"id":
|
|
8976
|
+
"id": 501,
|
|
8582
8977
|
"name": "fieldExtensionId",
|
|
8583
8978
|
"kind": 1024,
|
|
8584
8979
|
"kindString": "Property",
|
|
@@ -8589,7 +8984,7 @@
|
|
|
8589
8984
|
"sources": [
|
|
8590
8985
|
{
|
|
8591
8986
|
"fileName": "types.ts",
|
|
8592
|
-
"line":
|
|
8987
|
+
"line": 1202,
|
|
8593
8988
|
"character": 2
|
|
8594
8989
|
}
|
|
8595
8990
|
],
|
|
@@ -8599,7 +8994,29 @@
|
|
|
8599
8994
|
}
|
|
8600
8995
|
},
|
|
8601
8996
|
{
|
|
8602
|
-
"id":
|
|
8997
|
+
"id": 505,
|
|
8998
|
+
"name": "itemType",
|
|
8999
|
+
"kind": 1024,
|
|
9000
|
+
"kindString": "Property",
|
|
9001
|
+
"flags": {},
|
|
9002
|
+
"comment": {
|
|
9003
|
+
"shortText": "The model for the field being edited"
|
|
9004
|
+
},
|
|
9005
|
+
"sources": [
|
|
9006
|
+
{
|
|
9007
|
+
"fileName": "types.ts",
|
|
9008
|
+
"line": 1218,
|
|
9009
|
+
"character": 2
|
|
9010
|
+
}
|
|
9011
|
+
],
|
|
9012
|
+
"type": {
|
|
9013
|
+
"type": "reference",
|
|
9014
|
+
"id": 16,
|
|
9015
|
+
"name": "ModelBlock"
|
|
9016
|
+
}
|
|
9017
|
+
},
|
|
9018
|
+
{
|
|
9019
|
+
"id": 500,
|
|
8603
9020
|
"name": "mode",
|
|
8604
9021
|
"kind": 1024,
|
|
8605
9022
|
"kindString": "Property",
|
|
@@ -8607,7 +9024,7 @@
|
|
|
8607
9024
|
"sources": [
|
|
8608
9025
|
{
|
|
8609
9026
|
"fileName": "types.ts",
|
|
8610
|
-
"line":
|
|
9027
|
+
"line": 1200,
|
|
8611
9028
|
"character": 2
|
|
8612
9029
|
}
|
|
8613
9030
|
],
|
|
@@ -8617,7 +9034,7 @@
|
|
|
8617
9034
|
}
|
|
8618
9035
|
},
|
|
8619
9036
|
{
|
|
8620
|
-
"id":
|
|
9037
|
+
"id": 502,
|
|
8621
9038
|
"name": "parameters",
|
|
8622
9039
|
"kind": 1024,
|
|
8623
9040
|
"kindString": "Property",
|
|
@@ -8628,7 +9045,7 @@
|
|
|
8628
9045
|
"sources": [
|
|
8629
9046
|
{
|
|
8630
9047
|
"fileName": "types.ts",
|
|
8631
|
-
"line":
|
|
9048
|
+
"line": 1207,
|
|
8632
9049
|
"character": 2
|
|
8633
9050
|
}
|
|
8634
9051
|
],
|
|
@@ -8646,6 +9063,28 @@
|
|
|
8646
9063
|
],
|
|
8647
9064
|
"name": "Record"
|
|
8648
9065
|
}
|
|
9066
|
+
},
|
|
9067
|
+
{
|
|
9068
|
+
"id": 504,
|
|
9069
|
+
"name": "pendingField",
|
|
9070
|
+
"kind": 1024,
|
|
9071
|
+
"kindString": "Property",
|
|
9072
|
+
"flags": {},
|
|
9073
|
+
"comment": {
|
|
9074
|
+
"shortText": "The field entity that is being edited in the form"
|
|
9075
|
+
},
|
|
9076
|
+
"sources": [
|
|
9077
|
+
{
|
|
9078
|
+
"fileName": "types.ts",
|
|
9079
|
+
"line": 1215,
|
|
9080
|
+
"character": 2
|
|
9081
|
+
}
|
|
9082
|
+
],
|
|
9083
|
+
"type": {
|
|
9084
|
+
"type": "reference",
|
|
9085
|
+
"id": 484,
|
|
9086
|
+
"name": "PendingField"
|
|
9087
|
+
}
|
|
8649
9088
|
}
|
|
8650
9089
|
],
|
|
8651
9090
|
"groups": [
|
|
@@ -8653,17 +9092,19 @@
|
|
|
8653
9092
|
"title": "Properties",
|
|
8654
9093
|
"kind": 1024,
|
|
8655
9094
|
"children": [
|
|
8656
|
-
|
|
8657
|
-
|
|
8658
|
-
|
|
8659
|
-
|
|
9095
|
+
503,
|
|
9096
|
+
501,
|
|
9097
|
+
505,
|
|
9098
|
+
500,
|
|
9099
|
+
502,
|
|
9100
|
+
504
|
|
8660
9101
|
]
|
|
8661
9102
|
}
|
|
8662
9103
|
],
|
|
8663
9104
|
"sources": [
|
|
8664
9105
|
{
|
|
8665
9106
|
"fileName": "types.ts",
|
|
8666
|
-
"line":
|
|
9107
|
+
"line": 1199,
|
|
8667
9108
|
"character": 73
|
|
8668
9109
|
}
|
|
8669
9110
|
]
|
|
@@ -8688,7 +9129,7 @@
|
|
|
8688
9129
|
"types": [
|
|
8689
9130
|
{
|
|
8690
9131
|
"type": "reference",
|
|
8691
|
-
"id":
|
|
9132
|
+
"id": 515,
|
|
8692
9133
|
"name": "RenderManualFieldExtensionConfigScreenPropertiesAndMethods"
|
|
8693
9134
|
},
|
|
8694
9135
|
{
|
|
@@ -8700,7 +9141,7 @@
|
|
|
8700
9141
|
}
|
|
8701
9142
|
},
|
|
8702
9143
|
{
|
|
8703
|
-
"id":
|
|
9144
|
+
"id": 514,
|
|
8704
9145
|
"name": "RenderManualFieldExtensionConfigScreenMethods",
|
|
8705
9146
|
"kind": 4194304,
|
|
8706
9147
|
"kindString": "Type alias",
|
|
@@ -8708,7 +9149,7 @@
|
|
|
8708
9149
|
"sources": [
|
|
8709
9150
|
{
|
|
8710
9151
|
"fileName": "types.ts",
|
|
8711
|
-
"line":
|
|
9152
|
+
"line": 1242,
|
|
8712
9153
|
"character": 12
|
|
8713
9154
|
}
|
|
8714
9155
|
],
|
|
@@ -8727,14 +9168,14 @@
|
|
|
8727
9168
|
},
|
|
8728
9169
|
{
|
|
8729
9170
|
"type": "reference",
|
|
8730
|
-
"id":
|
|
9171
|
+
"id": 507,
|
|
8731
9172
|
"name": "RenderManualFieldExtensionConfigScreenAdditionalMethods"
|
|
8732
9173
|
}
|
|
8733
9174
|
]
|
|
8734
9175
|
}
|
|
8735
9176
|
},
|
|
8736
9177
|
{
|
|
8737
|
-
"id":
|
|
9178
|
+
"id": 506,
|
|
8738
9179
|
"name": "RenderManualFieldExtensionConfigScreenProperties",
|
|
8739
9180
|
"kind": 4194304,
|
|
8740
9181
|
"kindString": "Type alias",
|
|
@@ -8742,7 +9183,7 @@
|
|
|
8742
9183
|
"sources": [
|
|
8743
9184
|
{
|
|
8744
9185
|
"fileName": "types.ts",
|
|
8745
|
-
"line":
|
|
9186
|
+
"line": 1221,
|
|
8746
9187
|
"character": 12
|
|
8747
9188
|
}
|
|
8748
9189
|
],
|
|
@@ -8756,14 +9197,14 @@
|
|
|
8756
9197
|
},
|
|
8757
9198
|
{
|
|
8758
9199
|
"type": "reference",
|
|
8759
|
-
"id":
|
|
9200
|
+
"id": 498,
|
|
8760
9201
|
"name": "RenderManualFieldExtensionConfigScreenAdditionalProperties"
|
|
8761
9202
|
}
|
|
8762
9203
|
]
|
|
8763
9204
|
}
|
|
8764
9205
|
},
|
|
8765
9206
|
{
|
|
8766
|
-
"id":
|
|
9207
|
+
"id": 515,
|
|
8767
9208
|
"name": "RenderManualFieldExtensionConfigScreenPropertiesAndMethods",
|
|
8768
9209
|
"kind": 4194304,
|
|
8769
9210
|
"kindString": "Type alias",
|
|
@@ -8771,7 +9212,7 @@
|
|
|
8771
9212
|
"sources": [
|
|
8772
9213
|
{
|
|
8773
9214
|
"fileName": "types.ts",
|
|
8774
|
-
"line":
|
|
9215
|
+
"line": 1246,
|
|
8775
9216
|
"character": 12
|
|
8776
9217
|
}
|
|
8777
9218
|
],
|
|
@@ -8780,12 +9221,12 @@
|
|
|
8780
9221
|
"types": [
|
|
8781
9222
|
{
|
|
8782
9223
|
"type": "reference",
|
|
8783
|
-
"id":
|
|
9224
|
+
"id": 514,
|
|
8784
9225
|
"name": "RenderManualFieldExtensionConfigScreenMethods"
|
|
8785
9226
|
},
|
|
8786
9227
|
{
|
|
8787
9228
|
"type": "reference",
|
|
8788
|
-
"id":
|
|
9229
|
+
"id": 506,
|
|
8789
9230
|
"name": "RenderManualFieldExtensionConfigScreenProperties"
|
|
8790
9231
|
}
|
|
8791
9232
|
]
|
|
@@ -11662,19 +12103,20 @@
|
|
|
11662
12103
|
161,
|
|
11663
12104
|
222,
|
|
11664
12105
|
387,
|
|
11665
|
-
|
|
11666
|
-
|
|
12106
|
+
530,
|
|
12107
|
+
526,
|
|
11667
12108
|
67,
|
|
11668
|
-
|
|
11669
|
-
|
|
11670
|
-
|
|
12109
|
+
534,
|
|
12110
|
+
529,
|
|
12111
|
+
535,
|
|
12112
|
+
484,
|
|
11671
12113
|
273,
|
|
11672
|
-
|
|
11673
|
-
|
|
12114
|
+
520,
|
|
12115
|
+
516,
|
|
11674
12116
|
76,
|
|
11675
|
-
|
|
11676
|
-
|
|
11677
|
-
|
|
12117
|
+
524,
|
|
12118
|
+
519,
|
|
12119
|
+
525,
|
|
11678
12120
|
452,
|
|
11679
12121
|
441,
|
|
11680
12122
|
74,
|
|
@@ -11682,12 +12124,12 @@
|
|
|
11682
12124
|
451,
|
|
11683
12125
|
457,
|
|
11684
12126
|
73,
|
|
11685
|
-
|
|
11686
|
-
484,
|
|
11687
|
-
75,
|
|
12127
|
+
507,
|
|
11688
12128
|
498,
|
|
11689
|
-
|
|
11690
|
-
|
|
12129
|
+
75,
|
|
12130
|
+
514,
|
|
12131
|
+
506,
|
|
12132
|
+
515,
|
|
11691
12133
|
397,
|
|
11692
12134
|
464,
|
|
11693
12135
|
458,
|