@stepzen/graphiql-proxy 0.34.0-beta.6 → 0.34.0-experimental.1a30182

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright IBM Corp. 2020, 2023
3
+ Copyright IBM Corp. 2020, 2024
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stepzen/graphiql-proxy",
3
- "version": "0.34.0-beta.6",
3
+ "version": "0.34.0-experimental.1a30182",
4
4
  "author": "Darren Waddell <darren@stepzen.com>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://stepzen.com",
@@ -23,7 +23,7 @@
23
23
  "posttest": "prettier . --check"
24
24
  },
25
25
  "dependencies": {
26
- "@stepzen/fetch": "0.34.0-beta.6",
26
+ "@stepzen/fetch": "0.34.0-experimental.1a30182",
27
27
  "chalk": "^4.1.2",
28
28
  "cross-spawn": "^7.0.3",
29
29
  "debug": "^4.3.4",
@@ -55,5 +55,5 @@
55
55
  "sinon-chai": "3.7.0",
56
56
  "ts-node": "^10.8.2"
57
57
  },
58
- "gitHead": "4698d6408ecb1a661eec518c692b9e04cb7d844a"
58
+ "gitHead": "1a301828f696c57b545f166296036cdce30cd97d"
59
59
  }
@@ -1,4 +1,4 @@
1
- // Copyright IBM Corp. 2020, 2023
1
+ // Copyright IBM Corp. 2020, 2024
2
2
 
3
3
  const debugging = async (req, res) => {
4
4
  const {debugging} = req.stepzen
@@ -1,4 +1,4 @@
1
- // Copyright IBM Corp. 2020, 2023
1
+ // Copyright IBM Corp. 2020, 2024
2
2
 
3
3
  const details = async (req, res) => {
4
4
  const {zenservUrl, predicates, workspace} = req.stepzen
@@ -1,4 +1,4 @@
1
- // Copyright IBM Corp. 2020, 2023
1
+ // Copyright IBM Corp. 2020, 2024
2
2
 
3
3
  const ping = async (req, res) => {
4
4
  res.json({
@@ -1,4 +1,4 @@
1
- // Copyright IBM Corp. 2020, 2023
1
+ // Copyright IBM Corp. 2020, 2024
2
2
 
3
3
  const predicates = async (req, res) => {
4
4
  const {predicates} = req.stepzen
@@ -1,4 +1,4 @@
1
- // Copyright IBM Corp. 2020, 2023
1
+ // Copyright IBM Corp. 2020, 2024
2
2
 
3
3
  const debug = require('debug')
4
4
  const fetch = require('@stepzen/fetch').default
@@ -1,4 +1,4 @@
1
- // Copyright IBM Corp. 2020, 2023
1
+ // Copyright IBM Corp. 2020, 2024
2
2
 
3
3
  const fs = require('fs')
4
4
  const prettier = require('prettier')
@@ -1,4 +1,4 @@
1
- // Copyright IBM Corp. 2020, 2023
1
+ // Copyright IBM Corp. 2020, 2024
2
2
 
3
3
  const debug = require('debug')
4
4
  const express = require('express')
@@ -1,4 +1,4 @@
1
- // Copyright IBM Corp. 2020, 2023
1
+ // Copyright IBM Corp. 2020, 2024
2
2
  // Original code from https://github.com/facebook/create-react-app/blob/0f6fc2bc71d78f0dcae67f3f08ce98a42fc0a57c/packages/react-dev-utils/openChrome.applescript
3
3
 
4
4
  const chalk = require('chalk')
@@ -1,5 +1,5 @@
1
1
  (*
2
- Copyright IBM Corp. 2020, 2023
2
+ Copyright IBM Corp. 2020, 2024
3
3
 
4
4
  Original code from https://github.com/facebook/create-react-app/blob/0f6fc2bc71d78f0dcae67f3f08ce98a42fc0a57c/packages/react-dev-utils/openChrome.applescript
5
5
  *)