@tiba-spark/client-shared-lib 25.4.0-206 → 25.4.0-234
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/esm2022/libraries/service-proxy/cloud-service-proxies.mjs +3 -1
- package/fesm2022/tiba-spark-client-shared-lib.mjs +2 -0
- package/fesm2022/tiba-spark-client-shared-lib.mjs.map +1 -1
- package/libraries/service-proxy/cloud-service-proxies.d.ts +2 -0
- package/libraries/service-proxy/cloud-service-proxies.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -13338,6 +13338,7 @@ class CreateVendorIntegrationCommand {
|
|
|
13338
13338
|
init(_data) {
|
|
13339
13339
|
if (_data) {
|
|
13340
13340
|
this.vendorId = _data["vendorId"];
|
|
13341
|
+
this.tenantId = _data["tenantId"];
|
|
13341
13342
|
if (Array.isArray(_data["vendorRoles"])) {
|
|
13342
13343
|
this.vendorRoles = [];
|
|
13343
13344
|
for (let item of _data["vendorRoles"])
|
|
@@ -13359,6 +13360,7 @@ class CreateVendorIntegrationCommand {
|
|
|
13359
13360
|
toJSON(data) {
|
|
13360
13361
|
data = typeof data === 'object' ? data : {};
|
|
13361
13362
|
data["vendorId"] = this.vendorId;
|
|
13363
|
+
data["tenantId"] = this.tenantId;
|
|
13362
13364
|
if (Array.isArray(this.vendorRoles)) {
|
|
13363
13365
|
data["vendorRoles"] = [];
|
|
13364
13366
|
for (let item of this.vendorRoles)
|