From 723e8d28748886741b5d535ac1373281b5ab7c7f Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Thu, 29 May 2025 07:16:39 -0700 Subject: [PATCH] Move everything into subdir for repo merge --- .idea/codeStyles/Project.xml | 121 +++ .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/inspectionProfiles/Project_Default.xml | 6 + .idea/jsLibraryMappings.xml | 6 + .idea/misc.xml | 6 + .idea/modules.xml | 8 + .idea/plugins.iml | 25 + .idea/vcs.xml | 6 + .idea/workspace.xml | 736 ++++++++++++++++++ .../plugins/.github}/workflows/ci.yaml | 0 .gitignore => packages/plugins/.gitignore | 0 .../plugins/.prettierrc.json | 0 LICENSE => packages/plugins/LICENSE | 0 README.md => packages/plugins/README.md | 0 .../plugins/package-lock.json | 0 package.json => packages/plugins/package.json | 0 .../plugins/plugins}/auth-basic/package.json | 0 .../plugins/plugins}/auth-basic/src/index.ts | 0 .../plugins/plugins}/auth-bearer/package.json | 0 .../plugins/plugins}/auth-bearer/src/index.ts | 0 .../plugins/plugins}/auth-jwt/package.json | 0 .../plugins/plugins}/auth-jwt/src/index.ts | 0 .../plugins/plugins}/auth-oauth2/package.json | 0 .../auth-oauth2/src/getAccessToken.ts | 0 .../src/getOrRefreshAccessToken.ts | 0 .../src/grants/authorizationCode.ts | 0 .../src/grants/clientCredentials.ts | 0 .../auth-oauth2/src/grants/implicit.ts | 0 .../auth-oauth2/src/grants/password.ts | 0 .../plugins/plugins}/auth-oauth2/src/index.ts | 0 .../plugins/plugins}/auth-oauth2/src/store.ts | 0 .../plugins}/exporter-curl/package.json | 0 .../plugins}/exporter-curl/src/index.ts | 0 .../exporter-curl/tests/index.test.ts | 0 .../plugins}/filter-jsonpath/package.json | 0 .../plugins}/filter-jsonpath/src/index.ts | 0 .../plugins}/filter-xpath/package.json | 0 .../plugins}/filter-xpath/src/index.ts | 0 .../plugins}/importer-curl/package.json | 0 .../plugins}/importer-curl/src/index.ts | 0 .../importer-curl/tests/index.test.ts | 0 .../plugins}/importer-insomnia/package.json | 0 .../plugins}/importer-insomnia/src/common.ts | 0 .../plugins}/importer-insomnia/src/index.ts | 0 .../plugins}/importer-insomnia/src/v4.ts | 0 .../plugins}/importer-insomnia/src/v5.ts | 0 .../tests/fixtures/basic.input.json | 0 .../tests/fixtures/basic.output.json | 0 .../fixtures/version-5-minimal.input.yaml | 0 .../fixtures/version-5-minimal.output.json | 0 .../tests/fixtures/version-5.input.yaml | 0 .../tests/fixtures/version-5.output.json | 0 .../importer-insomnia/tests/index.test.ts | 0 .../plugins}/importer-openapi/package.json | 0 .../plugins}/importer-openapi/src/index.ts | 0 .../tests/fixtures/petstore.yaml | 0 .../importer-openapi/tests/index.test.ts | 0 .../plugins}/importer-postman/package.json | 0 .../plugins}/importer-postman/src/index.ts | 0 .../tests/fixtures/nested.input.json | 0 .../tests/fixtures/nested.output.json | 0 .../tests/fixtures/params.input.json | 0 .../tests/fixtures/params.output.json | 0 .../importer-postman/tests/index.test.ts | 0 .../plugins}/importer-yaak/package.json | 0 .../plugins}/importer-yaak/src/index.ts | 0 .../importer-yaak/tests/index.test.ts | 0 .../template-function-cookie/package.json | 0 .../template-function-cookie/src/index.ts | 0 .../template-function-encode/package.json | 0 .../template-function-encode/src/index.ts | 0 .../template-function-fs/package.json | 0 .../template-function-fs/src/index.ts | 0 .../template-function-hash/package.json | 0 .../template-function-hash/src/index.ts | 0 .../template-function-json/package.json | 0 .../template-function-json/src/index.ts | 0 .../template-function-prompt/package.json | 0 .../template-function-prompt/src/index.ts | 0 .../template-function-regex/package.json | 0 .../template-function-regex/src/index.ts | 0 .../template-function-request/package.json | 0 .../template-function-request/src/index.ts | 0 .../template-function-response/package.json | 0 .../template-function-response/src/index.ts | 0 .../template-function-uuid/package.json | 0 .../template-function-uuid/src/index.ts | 0 .../template-function-xml/package.json | 0 .../template-function-xml/src/index.ts | 0 .../plugins/tsconfig.json | 0 90 files changed, 919 insertions(+) create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/jsLibraryMappings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/plugins.iml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml rename {.github => packages/plugins/.github}/workflows/ci.yaml (100%) rename .gitignore => packages/plugins/.gitignore (100%) rename .prettierrc.json => packages/plugins/.prettierrc.json (100%) rename LICENSE => packages/plugins/LICENSE (100%) rename README.md => packages/plugins/README.md (100%) rename package-lock.json => packages/plugins/package-lock.json (100%) rename package.json => packages/plugins/package.json (100%) rename {plugins => packages/plugins/plugins}/auth-basic/package.json (100%) rename {plugins => packages/plugins/plugins}/auth-basic/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/auth-bearer/package.json (100%) rename {plugins => packages/plugins/plugins}/auth-bearer/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/auth-jwt/package.json (100%) rename {plugins => packages/plugins/plugins}/auth-jwt/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/auth-oauth2/package.json (100%) rename {plugins => packages/plugins/plugins}/auth-oauth2/src/getAccessToken.ts (100%) rename {plugins => packages/plugins/plugins}/auth-oauth2/src/getOrRefreshAccessToken.ts (100%) rename {plugins => packages/plugins/plugins}/auth-oauth2/src/grants/authorizationCode.ts (100%) rename {plugins => packages/plugins/plugins}/auth-oauth2/src/grants/clientCredentials.ts (100%) rename {plugins => packages/plugins/plugins}/auth-oauth2/src/grants/implicit.ts (100%) rename {plugins => packages/plugins/plugins}/auth-oauth2/src/grants/password.ts (100%) rename {plugins => packages/plugins/plugins}/auth-oauth2/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/auth-oauth2/src/store.ts (100%) rename {plugins => packages/plugins/plugins}/exporter-curl/package.json (100%) rename {plugins => packages/plugins/plugins}/exporter-curl/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/exporter-curl/tests/index.test.ts (100%) rename {plugins => packages/plugins/plugins}/filter-jsonpath/package.json (100%) rename {plugins => packages/plugins/plugins}/filter-jsonpath/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/filter-xpath/package.json (100%) rename {plugins => packages/plugins/plugins}/filter-xpath/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/importer-curl/package.json (100%) rename {plugins => packages/plugins/plugins}/importer-curl/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/importer-curl/tests/index.test.ts (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/package.json (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/src/common.ts (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/src/v4.ts (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/src/v5.ts (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/tests/fixtures/basic.input.json (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/tests/fixtures/basic.output.json (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/tests/fixtures/version-5-minimal.input.yaml (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/tests/fixtures/version-5-minimal.output.json (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/tests/fixtures/version-5.input.yaml (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/tests/fixtures/version-5.output.json (100%) rename {plugins => packages/plugins/plugins}/importer-insomnia/tests/index.test.ts (100%) rename {plugins => packages/plugins/plugins}/importer-openapi/package.json (100%) rename {plugins => packages/plugins/plugins}/importer-openapi/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/importer-openapi/tests/fixtures/petstore.yaml (100%) rename {plugins => packages/plugins/plugins}/importer-openapi/tests/index.test.ts (100%) rename {plugins => packages/plugins/plugins}/importer-postman/package.json (100%) rename {plugins => packages/plugins/plugins}/importer-postman/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/importer-postman/tests/fixtures/nested.input.json (100%) rename {plugins => packages/plugins/plugins}/importer-postman/tests/fixtures/nested.output.json (100%) rename {plugins => packages/plugins/plugins}/importer-postman/tests/fixtures/params.input.json (100%) rename {plugins => packages/plugins/plugins}/importer-postman/tests/fixtures/params.output.json (100%) rename {plugins => packages/plugins/plugins}/importer-postman/tests/index.test.ts (100%) rename {plugins => packages/plugins/plugins}/importer-yaak/package.json (100%) rename {plugins => packages/plugins/plugins}/importer-yaak/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/importer-yaak/tests/index.test.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-cookie/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-cookie/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-encode/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-encode/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-fs/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-fs/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-hash/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-hash/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-json/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-json/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-prompt/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-prompt/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-regex/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-regex/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-request/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-request/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-response/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-response/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-uuid/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-uuid/src/index.ts (100%) rename {plugins => packages/plugins/plugins}/template-function-xml/package.json (100%) rename {plugins => packages/plugins/plugins}/template-function-xml/src/index.ts (100%) rename tsconfig.json => packages/plugins/tsconfig.json (100%) diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 00000000..7fff17ee --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 00000000..79ee123c --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 00000000..c88ef5f1 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml new file mode 100644 index 00000000..cc3da93f --- /dev/null +++ b/.idea/jsLibraryMappings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..639900d1 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..9aabe3f9 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/plugins.iml b/.idea/plugins.iml new file mode 100644 index 00000000..329b5218 --- /dev/null +++ b/.idea/plugins.iml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..35eb1ddf --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 00000000..d1c0d4fd --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,736 @@ + + + + + + + + + + + + + + { + "lastFilter": { + "state": "OPEN", + "assignee": "gschier" + } +} + { + "selectedUrlAndAccountId": { + "url": "git@github.com:yaakapp/plugins.git", + "accountId": "71967edb-f3a0-49b0-a8bb-91c112bf4a62" + } +} + {} + { + "isMigrated": true +} + + + + + { + "associatedIndex": 0 +} + + + + + + + build.executor": "Run", + "npm.auth-jwt > dev.executor": "Debug", + "npm.auth-none > build.executor": "Run", + "npm.auth-oauth2 > dev.executor": "Run", + "npm.build (1).executor": "Run", + "npm.build (2).executor": "Run", + "npm.build.executor": "Run", + "npm.dev.executor": "Run", + "npm.exporter-curl > build.executor": "Run", + "npm.exporter-curl > dev.executor": "Run", + "npm.exporter-curl > watch.executor": "Run", + "npm.importer-openapi > dev.executor": "Run", + "npm.template-function-secure > dev.executor": "Run", + "org.rust.cargo.project.model.impl.CargoExternalSystemProjectAware.subscribe.first.balloon": "", + "org.rust.first.attach.projects": "true", + "settings.editor.selected.configurable": "preferences.pluginManager", + "ts.external.directory.path": "/Users/gschier/Applications/IntelliJ IDEA Ultimate.app/Contents/plugins/javascript-plugin/jsLanguageServicesImpl/external", + "typescript.add.unambiguous.imports.on.the.fly": "true" + }, + "keyToStringList": { + "com.intellij.ide.scratch.ScratchImplUtil$2/New Scratch File": [ + "TypeScript", + "TEXT", + "JSON" + ] + } +}]]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +