@bigfootai/bigfoot-types 5.2.8 → 5.2.10
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/model.js +3 -1
- package/model.ts +4 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -330,6 +330,7 @@ input ExternalIdLinkInput {
|
|
330
330
|
application: String!
|
331
331
|
label: String
|
332
332
|
tagType: TagType
|
333
|
+
tagSubType: String
|
333
334
|
blockType: BlockType
|
334
335
|
connectionId: String
|
335
336
|
}`;
|
@@ -1343,7 +1344,8 @@ class Record extends BusinessObject {
|
|
1343
1344
|
exports.Record = Record;
|
1344
1345
|
exports.TableFields = `${exports.BusinessObjectFields}
|
1345
1346
|
records: [Record]
|
1346
|
-
metadata: TableMetadata
|
1347
|
+
metadata: TableMetadata
|
1348
|
+
connectionId: String`;
|
1347
1349
|
exports.TableQL = `
|
1348
1350
|
type Table {${exports.TableFields}
|
1349
1351
|
}`;
|
package/model.ts
CHANGED
@@ -388,6 +388,7 @@ input ExternalIdLinkInput {
|
|
388
388
|
application: String!
|
389
389
|
label: String
|
390
390
|
tagType: TagType
|
391
|
+
tagSubType: String
|
391
392
|
blockType: BlockType
|
392
393
|
connectionId: String
|
393
394
|
}`;
|
@@ -2386,13 +2387,15 @@ export class Record extends BusinessObject {
|
|
2386
2387
|
|
2387
2388
|
export const TableFields = `${BusinessObjectFields}
|
2388
2389
|
records: [Record]
|
2389
|
-
metadata: TableMetadata
|
2390
|
+
metadata: TableMetadata
|
2391
|
+
connectionId: String`;
|
2390
2392
|
export const TableQL = `
|
2391
2393
|
type Table {${TableFields}
|
2392
2394
|
}`;
|
2393
2395
|
export class Table extends BusinessObject {
|
2394
2396
|
metadata: TableMetadata;
|
2395
2397
|
records?: Record[];
|
2398
|
+
connectionId?: string; // This is a virtual property we provide when the table/records are loaded
|
2396
2399
|
|
2397
2400
|
constructor(
|
2398
2401
|
tenantIdCreated: string,
|