New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@brasilindoc/integration-products

Package Overview
Dependencies
Maintainers
2
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brasilindoc/integration-products - npm Package Compare versions

Comparing version 3.1.3 to 3.2.0

services/FinancialService.d.ts

6

BRDocService.d.ts
import { AccountsService } from './services/AccountsService.js';
import { FileManagerService } from './services/FileManagerService.js';
import { FinancialService } from './services/FinancialService.js';
import { IdentifyService } from './services/IdentifyService.js';
import { IndocService } from './services/IndocService.js';
import { OnboardingService } from './services/OnboardingService.js';
import { PhoneIdService } from './services/PhoneIdService.js';

@@ -19,2 +21,4 @@ import './@types/br-accounts.types.js';

private readonly hostFileManagerId;
private readonly hostOnboarding;
private readonly hostFinancial;
constructor(accessToken?: string | undefined);

@@ -26,2 +30,4 @@ accounts(): AccountsService;

fileManager(): FileManagerService;
onboarding(): OnboardingService;
financial(): FinancialService;
private getHostAppByEnv;

@@ -28,0 +34,0 @@ private getHostByEnv;

@@ -234,2 +234,10 @@ "use strict";

// src/services/FinancialService.ts
var FINANCIAL_PRODUCT_KEY = 97;
var FinancialService = class extends BRDocServiceBase {
constructor(hostAccounts, host, accessToken) {
super(hostAccounts, host, FINANCIAL_PRODUCT_KEY, accessToken);
}
};
// src/services/IdentifyService.ts

@@ -283,2 +291,11 @@ var IDENTIFY_PRODUCT_KEY = 2;

// src/services/OnboardingService.ts
var ONBOARDING_PRODUCT_KEY = 4;
var OnboardingService = class extends BRDocServiceBase {
resource = "onboarding";
constructor(hostAccounts, host, accessToken) {
super(hostAccounts, host, ONBOARDING_PRODUCT_KEY, accessToken);
}
};
// src/services/PhoneIdService.ts

@@ -304,2 +321,4 @@ var PHONEID_PRODUCT_KEY = 3;

this.hostFileManagerId = this.getHostAppByEnv("file-manager");
this.hostOnboarding = this.getHostAppByEnv("onboarding");
this.hostFinancial = this.getHostAppByEnv("financial");
}

@@ -311,2 +330,4 @@ hostAccounts;

hostFileManagerId;
hostOnboarding;
hostFinancial;
accounts() {

@@ -339,2 +360,16 @@ return new AccountsService(this.hostAccounts, this.accessToken);

}
onboarding() {
return new OnboardingService(
this.hostAccounts,
this.hostOnboarding,
this.accessToken
);
}
financial() {
return new FinancialService(
this.hostAccounts,
this.hostFinancial,
this.accessToken
);
}
getHostAppByEnv(appName) {

@@ -341,0 +376,0 @@ switch (Environment.get("ENVIRONMENT_TYPE")) {

2

package.json
{
"name": "@brasilindoc/integration-products",
"version": "3.1.3",
"version": "3.2.0",
"engines": {

@@ -5,0 +5,0 @@ "node": "^18.14.0"

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc