@stepzen/graphiql-proxy 0.33.0-experimental.eded448 → 0.33.0

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 (c) StepZen Inc., an IBM Company 2020,2023.
3
+ Copyright IBM Corp. 2020, 2023
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.33.0-experimental.eded448",
3
+ "version": "0.33.0",
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.33.0-experimental.eded448",
26
+ "@stepzen/fetch": "0.33.0",
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": "eded448b908bc36771124a61121e11f85545d2b2"
58
+ "gitHead": "72823d84cfae8e4b1337ca49fe6f75589f115067"
59
59
  }
@@ -1,4 +1,4 @@
1
- // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
1
+ // Copyright IBM Corp. 2020, 2023
2
2
 
3
3
  const debugging = async (req, res) => {
4
4
  const {debugging} = req.stepzen
@@ -1,4 +1,4 @@
1
- // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
1
+ // Copyright IBM Corp. 2020, 2023
2
2
 
3
3
  const details = async (req, res) => {
4
4
  const {zenservUrl, predicates, workspace} = req.stepzen
@@ -1,4 +1,4 @@
1
- // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
1
+ // Copyright IBM Corp. 2020, 2023
2
2
 
3
3
  const ping = async (req, res) => {
4
4
  res.json({
@@ -1,4 +1,4 @@
1
- // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
1
+ // Copyright IBM Corp. 2020, 2023
2
2
 
3
3
  const predicates = async (req, res) => {
4
4
  const {predicates} = req.stepzen
@@ -1,4 +1,4 @@
1
- // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
1
+ // Copyright IBM Corp. 2020, 2023
2
2
 
3
3
  const debug = require('debug')
4
4
  const fetch = require('@stepzen/fetch').default
@@ -1,4 +1,4 @@
1
- // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
1
+ // Copyright IBM Corp. 2020, 2023
2
2
 
3
3
  const fs = require('fs')
4
4
  const prettier = require('prettier')
@@ -1,4 +1,4 @@
1
- // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
1
+ // Copyright IBM Corp. 2020, 2023
2
2
 
3
3
  const debug = require('debug')
4
4
  const express = require('express')
@@ -1,4 +1,4 @@
1
- // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
1
+ // Copyright IBM Corp. 2020, 2023
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 (c) StepZen Inc., an IBM Company 2020,2023.
2
+ Copyright IBM Corp. 2020, 2023
3
3
 
4
4
  Original code from https://github.com/facebook/create-react-app/blob/0f6fc2bc71d78f0dcae67f3f08ce98a42fc0a57c/packages/react-dev-utils/openChrome.applescript
5
5
  *)