@sqlanvil/cli 1.12.0 → 1.13.0
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/bundle.js +24 -1
- package/package.json +1 -1
- package/worker_bundle.js +23 -0
package/bundle.js
CHANGED
|
@@ -1277,6 +1277,7 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1277
1277
|
* @property {string|null} [project] ConnectionConfig project
|
|
1278
1278
|
* @property {string|null} [dataset] ConnectionConfig dataset
|
|
1279
1279
|
* @property {string|null} [saKeyId] ConnectionConfig saKeyId
|
|
1280
|
+
* @property {string|null} [billingProject] ConnectionConfig billingProject
|
|
1280
1281
|
* @property {string|null} [host] ConnectionConfig host
|
|
1281
1282
|
* @property {number|null} [port] ConnectionConfig port
|
|
1282
1283
|
* @property {string|null} [database] ConnectionConfig database
|
|
@@ -1330,6 +1331,14 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1330
1331
|
*/
|
|
1331
1332
|
ConnectionConfig.prototype.saKeyId = "";
|
|
1332
1333
|
|
|
1334
|
+
/**
|
|
1335
|
+
* ConnectionConfig billingProject.
|
|
1336
|
+
* @member {string} billingProject
|
|
1337
|
+
* @memberof sqlanvil.ConnectionConfig
|
|
1338
|
+
* @instance
|
|
1339
|
+
*/
|
|
1340
|
+
ConnectionConfig.prototype.billingProject = "";
|
|
1341
|
+
|
|
1333
1342
|
/**
|
|
1334
1343
|
* ConnectionConfig host.
|
|
1335
1344
|
* @member {string} host
|
|
@@ -1402,6 +1411,8 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1402
1411
|
writer.uint32(/* id 7, wireType 2 =*/58).string(message.database);
|
|
1403
1412
|
if (message.defaultSchema != null && Object.hasOwnProperty.call(message, "defaultSchema"))
|
|
1404
1413
|
writer.uint32(/* id 8, wireType 2 =*/66).string(message.defaultSchema);
|
|
1414
|
+
if (message.billingProject != null && Object.hasOwnProperty.call(message, "billingProject"))
|
|
1415
|
+
writer.uint32(/* id 9, wireType 2 =*/74).string(message.billingProject);
|
|
1405
1416
|
return writer;
|
|
1406
1417
|
};
|
|
1407
1418
|
|
|
@@ -1458,6 +1469,10 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1458
1469
|
message.saKeyId = reader.string();
|
|
1459
1470
|
break;
|
|
1460
1471
|
}
|
|
1472
|
+
case 9: {
|
|
1473
|
+
message.billingProject = reader.string();
|
|
1474
|
+
break;
|
|
1475
|
+
}
|
|
1461
1476
|
case 5: {
|
|
1462
1477
|
message.host = reader.string();
|
|
1463
1478
|
break;
|
|
@@ -1525,6 +1540,9 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1525
1540
|
if (message.saKeyId != null && message.hasOwnProperty("saKeyId"))
|
|
1526
1541
|
if (!$util.isString(message.saKeyId))
|
|
1527
1542
|
return "saKeyId: string expected";
|
|
1543
|
+
if (message.billingProject != null && message.hasOwnProperty("billingProject"))
|
|
1544
|
+
if (!$util.isString(message.billingProject))
|
|
1545
|
+
return "billingProject: string expected";
|
|
1528
1546
|
if (message.host != null && message.hasOwnProperty("host"))
|
|
1529
1547
|
if (!$util.isString(message.host))
|
|
1530
1548
|
return "host: string expected";
|
|
@@ -1564,6 +1582,8 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1564
1582
|
message.dataset = String(object.dataset);
|
|
1565
1583
|
if (object.saKeyId != null)
|
|
1566
1584
|
message.saKeyId = String(object.saKeyId);
|
|
1585
|
+
if (object.billingProject != null)
|
|
1586
|
+
message.billingProject = String(object.billingProject);
|
|
1567
1587
|
if (object.host != null)
|
|
1568
1588
|
message.host = String(object.host);
|
|
1569
1589
|
if (object.port != null)
|
|
@@ -1597,6 +1617,7 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1597
1617
|
object.port = 0;
|
|
1598
1618
|
object.database = "";
|
|
1599
1619
|
object.defaultSchema = "";
|
|
1620
|
+
object.billingProject = "";
|
|
1600
1621
|
}
|
|
1601
1622
|
if (message.platform != null && message.hasOwnProperty("platform"))
|
|
1602
1623
|
object.platform = message.platform;
|
|
@@ -1614,6 +1635,8 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1614
1635
|
object.database = message.database;
|
|
1615
1636
|
if (message.defaultSchema != null && message.hasOwnProperty("defaultSchema"))
|
|
1616
1637
|
object.defaultSchema = message.defaultSchema;
|
|
1638
|
+
if (message.billingProject != null && message.hasOwnProperty("billingProject"))
|
|
1639
|
+
object.billingProject = message.billingProject;
|
|
1617
1640
|
return object;
|
|
1618
1641
|
};
|
|
1619
1642
|
|
|
@@ -46319,7 +46342,7 @@ function collectEvaluationQueries(queryOrAction, concatenate, queryModifier = (q
|
|
|
46319
46342
|
.filter(validationQuery => !!validationQuery.query);
|
|
46320
46343
|
}
|
|
46321
46344
|
|
|
46322
|
-
const version = "1.
|
|
46345
|
+
const version = "1.13.0";
|
|
46323
46346
|
const dataformVersion = "3.0.60";
|
|
46324
46347
|
|
|
46325
46348
|
async function build(compiledGraph, runConfig, dbadapter) {
|
package/package.json
CHANGED
package/worker_bundle.js
CHANGED
|
@@ -1216,6 +1216,7 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1216
1216
|
* @property {string|null} [project] ConnectionConfig project
|
|
1217
1217
|
* @property {string|null} [dataset] ConnectionConfig dataset
|
|
1218
1218
|
* @property {string|null} [saKeyId] ConnectionConfig saKeyId
|
|
1219
|
+
* @property {string|null} [billingProject] ConnectionConfig billingProject
|
|
1219
1220
|
* @property {string|null} [host] ConnectionConfig host
|
|
1220
1221
|
* @property {number|null} [port] ConnectionConfig port
|
|
1221
1222
|
* @property {string|null} [database] ConnectionConfig database
|
|
@@ -1269,6 +1270,14 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1269
1270
|
*/
|
|
1270
1271
|
ConnectionConfig.prototype.saKeyId = "";
|
|
1271
1272
|
|
|
1273
|
+
/**
|
|
1274
|
+
* ConnectionConfig billingProject.
|
|
1275
|
+
* @member {string} billingProject
|
|
1276
|
+
* @memberof sqlanvil.ConnectionConfig
|
|
1277
|
+
* @instance
|
|
1278
|
+
*/
|
|
1279
|
+
ConnectionConfig.prototype.billingProject = "";
|
|
1280
|
+
|
|
1272
1281
|
/**
|
|
1273
1282
|
* ConnectionConfig host.
|
|
1274
1283
|
* @member {string} host
|
|
@@ -1341,6 +1350,8 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1341
1350
|
writer.uint32(/* id 7, wireType 2 =*/58).string(message.database);
|
|
1342
1351
|
if (message.defaultSchema != null && Object.hasOwnProperty.call(message, "defaultSchema"))
|
|
1343
1352
|
writer.uint32(/* id 8, wireType 2 =*/66).string(message.defaultSchema);
|
|
1353
|
+
if (message.billingProject != null && Object.hasOwnProperty.call(message, "billingProject"))
|
|
1354
|
+
writer.uint32(/* id 9, wireType 2 =*/74).string(message.billingProject);
|
|
1344
1355
|
return writer;
|
|
1345
1356
|
};
|
|
1346
1357
|
|
|
@@ -1397,6 +1408,10 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1397
1408
|
message.saKeyId = reader.string();
|
|
1398
1409
|
break;
|
|
1399
1410
|
}
|
|
1411
|
+
case 9: {
|
|
1412
|
+
message.billingProject = reader.string();
|
|
1413
|
+
break;
|
|
1414
|
+
}
|
|
1400
1415
|
case 5: {
|
|
1401
1416
|
message.host = reader.string();
|
|
1402
1417
|
break;
|
|
@@ -1464,6 +1479,9 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1464
1479
|
if (message.saKeyId != null && message.hasOwnProperty("saKeyId"))
|
|
1465
1480
|
if (!$util.isString(message.saKeyId))
|
|
1466
1481
|
return "saKeyId: string expected";
|
|
1482
|
+
if (message.billingProject != null && message.hasOwnProperty("billingProject"))
|
|
1483
|
+
if (!$util.isString(message.billingProject))
|
|
1484
|
+
return "billingProject: string expected";
|
|
1467
1485
|
if (message.host != null && message.hasOwnProperty("host"))
|
|
1468
1486
|
if (!$util.isString(message.host))
|
|
1469
1487
|
return "host: string expected";
|
|
@@ -1503,6 +1521,8 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1503
1521
|
message.dataset = String(object.dataset);
|
|
1504
1522
|
if (object.saKeyId != null)
|
|
1505
1523
|
message.saKeyId = String(object.saKeyId);
|
|
1524
|
+
if (object.billingProject != null)
|
|
1525
|
+
message.billingProject = String(object.billingProject);
|
|
1506
1526
|
if (object.host != null)
|
|
1507
1527
|
message.host = String(object.host);
|
|
1508
1528
|
if (object.port != null)
|
|
@@ -1536,6 +1556,7 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1536
1556
|
object.port = 0;
|
|
1537
1557
|
object.database = "";
|
|
1538
1558
|
object.defaultSchema = "";
|
|
1559
|
+
object.billingProject = "";
|
|
1539
1560
|
}
|
|
1540
1561
|
if (message.platform != null && message.hasOwnProperty("platform"))
|
|
1541
1562
|
object.platform = message.platform;
|
|
@@ -1553,6 +1574,8 @@ const sqlanvil = $root.sqlanvil = (() => {
|
|
|
1553
1574
|
object.database = message.database;
|
|
1554
1575
|
if (message.defaultSchema != null && message.hasOwnProperty("defaultSchema"))
|
|
1555
1576
|
object.defaultSchema = message.defaultSchema;
|
|
1577
|
+
if (message.billingProject != null && message.hasOwnProperty("billingProject"))
|
|
1578
|
+
object.billingProject = message.billingProject;
|
|
1556
1579
|
return object;
|
|
1557
1580
|
};
|
|
1558
1581
|
|