@bigfootai/bigfoot-types 2.9.5 → 2.9.6
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 +1 -2
- package/model.ts +1 -7
- package/package.json +1 -1
package/model.js
CHANGED
|
@@ -187,9 +187,8 @@ class Primitive {
|
|
|
187
187
|
}
|
|
188
188
|
exports.Primitive = Primitive;
|
|
189
189
|
class Sync extends Primitive {
|
|
190
|
-
constructor(
|
|
190
|
+
constructor(tenantIdCreated, providerRequest) {
|
|
191
191
|
super();
|
|
192
|
-
this.connectionId = connectionId;
|
|
193
192
|
this.tenantIdCreated = tenantIdCreated;
|
|
194
193
|
this.providerRequest = providerRequest;
|
|
195
194
|
}
|
package/model.ts
CHANGED
|
@@ -349,17 +349,11 @@ export class Primitive {
|
|
|
349
349
|
}
|
|
350
350
|
|
|
351
351
|
export class Sync extends Primitive {
|
|
352
|
-
connectionId: string;
|
|
353
352
|
providerRequest: ProviderRequest;
|
|
354
353
|
|
|
355
|
-
constructor(
|
|
356
|
-
connectionId: string,
|
|
357
|
-
tenantIdCreated: string,
|
|
358
|
-
providerRequest: ProviderRequest
|
|
359
|
-
) {
|
|
354
|
+
constructor(tenantIdCreated: string, providerRequest: ProviderRequest) {
|
|
360
355
|
super();
|
|
361
356
|
|
|
362
|
-
this.connectionId = connectionId;
|
|
363
357
|
this.tenantIdCreated = tenantIdCreated;
|
|
364
358
|
this.providerRequest = providerRequest;
|
|
365
359
|
}
|