Add more template tag plugins (#3)

This commit is contained in:
Gregory Schier
2024-10-02 06:56:07 -07:00
committed by GitHub
parent 9df586cb59
commit 54689d19ef
29 changed files with 412 additions and 7160 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
{
"name": "importer-openapi",
"name": "@yaakapp/importer-openapi",
"private": true,
"version": "0.0.1",
"scripts": {
@@ -9,5 +9,8 @@
"dependencies": {
"openapi-to-postmanv2": "^4.23.1",
"yaml": "^2.4.2"
},
"devDependencies": {
"@types/openapi-to-postmanv2": "^3.2.4"
}
}

View File

@@ -1,7 +1,7 @@
import { Context } from '@yaakapp/api';
import { convert } from 'openapi-to-postmanv2';
import { pluginHookImport as pluginHookImportPostman } from '../../importer-postman/src/index';
import { Folder, HttpRequest, Workspace, Environment } from '../../../types/models';
import { Folder, HttpRequest, Workspace, Environment } from '@yaakapp/api';
type AtLeast<T, K extends keyof T> = Partial<T> & Pick<T, K>;