Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

3048m

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

3048m - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

14

index.js

@@ -127,9 +127,10 @@ (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){

const timeEntriesUrl = `https://app.10000ft.com/api/v1/users/${userId}/time_entries?fields=approvals&from=${Utils.isoDate(queryFrom)}&page=1&per_page=1000&to=${Utils.isoDate(queryTo)}&with_suggestions=true`;
const apiUrl = 'https://rm.smartsheet.com/api/v1';
const timeEntriesUrl = `${apiUrl}/users/${userId}/time_entries?fields=approvals&from=${Utils.isoDate(queryFrom)}&page=1&per_page=1000&to=${Utils.isoDate(queryTo)}&with_suggestions=true`;
const timeEntriesPromise = fetch(timeEntriesUrl, { credentials: 'include' }).then((res) => res.json());
const projectsUrl = `https://app.10000ft.com/api/v1/users/${userId}/projects?with_archived=true&per_page=100&with_phases=true`;
const projectsUrl = `${apiUrl}/users/${userId}/projects?with_archived=true&per_page=100&with_phases=true`;
const projectsPromise = fetch(projectsUrl, { credentials: 'include' }).then((res) => res.json());
const leaveTypesUrl = `https://app.10000ft.com/api/v1/leave_types?page=1&with_archived=true`;
const leaveTypesUrl = `${apiUrl}/leave_types?page=1&with_archived=true`;
const leaveTypesPromise = fetch(leaveTypesUrl, { credentials: 'include' }).then((res) => res.json());

@@ -283,3 +284,3 @@

module.exports = (function anonymous(locals, escapeFn, include, rethrow
/*``*/) {
) {
escapeFn = escapeFn || function (markup) {

@@ -303,3 +304,4 @@ return markup == undefined

;
var __output = [], __append = __output.push.bind(__output);
var __output = "";
function __append(s) { if (s !== undefined && s !== null) __output += s }
with (locals || {}) {

@@ -365,3 +367,3 @@ ; const Utils = require('../utils');

}
return __output.join("");
return __output;

@@ -368,0 +370,0 @@ })

{
"name": "3048m",
"version": "1.1.2",
"version": "1.1.3",
"description": "Visit [https://dominykas.github.io/3048m/](https://dominykas.github.io/3048m/) and drag <a href=\"javascript:(() => { const s = document.createElement('script'); s.src = 'https://dominykas.github.io/3048m/index.js'; document.head.appendChild(s); })();\">`3048m`</a> to your bookmarks bar.",

@@ -5,0 +5,0 @@ "main": "index.js",

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