@vrplatform/graphql 1.1.24 → 1.1.25
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/build/main/client/index.d.ts +1 -1
- package/build/main/client/index.js +1 -1
- package/build/main/common/listings.js +1 -1
- package/build/main/common/tenant.js +1 -1
- package/build/module/client/index.d.ts +1 -1
- package/build/module/client/index.js +1 -1
- package/build/module/common/listings.js +1 -1
- package/build/module/common/tenant.js +1 -1
- package/package.json +2 -2
- package/src/client/index.ts +1 -1
- package/src/common/listings.ts +1 -1
- package/src/common/tenant.ts +1 -1
- package/LICENSE +0 -3
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultAssertHasuraRetryableResponse = void 0;
|
|
4
4
|
exports.useHasuraClient = useHasuraClient;
|
|
5
|
-
const utils_1 = require("@
|
|
5
|
+
const utils_1 = require("@vrplatform/utils");
|
|
6
6
|
const gqty_1 = require("gqty");
|
|
7
7
|
const constants_1 = require("../constants");
|
|
8
8
|
const gqty_2 = require("../gqty");
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.whereGlListingIsInactive = void 0;
|
|
4
4
|
exports.whereListingIsActive = whereListingIsActive;
|
|
5
5
|
exports.whereGlListingIsActive = whereGlListingIsActive;
|
|
6
|
-
const utils_1 = require("@
|
|
6
|
+
const utils_1 = require("@vrplatform/utils");
|
|
7
7
|
function whereListingIsActive() {
|
|
8
8
|
return {
|
|
9
9
|
_or: [
|
|
@@ -6,7 +6,7 @@ exports.assertTenantActive = assertTenantActive;
|
|
|
6
6
|
exports.mapTenantStatus = mapTenantStatus;
|
|
7
7
|
exports.whereTenantNotTestTeam = whereTenantNotTestTeam;
|
|
8
8
|
exports.whereTenantShouldBePaid = whereTenantShouldBePaid;
|
|
9
|
-
const utils_1 = require("@
|
|
9
|
+
const utils_1 = require("@vrplatform/utils");
|
|
10
10
|
const error_1 = require("../error");
|
|
11
11
|
// Tenants
|
|
12
12
|
exports.VRP_TENANT_ID = '7bfec41f-aa3f-4602-95d2-f7996e4f0e59';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defaultAssertRetryableResponse, formatResponse, useRetryableFetch, } from '@
|
|
1
|
+
import { defaultAssertRetryableResponse, formatResponse, useRetryableFetch, } from '@vrplatform/utils';
|
|
2
2
|
import { createClient } from 'gqty';
|
|
3
3
|
import { hasuraGraphqlUri, hasuraQueryTypeHeader } from '../constants';
|
|
4
4
|
import { generatedSchema, scalarsEnumsHash, } from '../gqty';
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"!**/*.spec.*",
|
|
11
11
|
"LICENSE"
|
|
12
12
|
],
|
|
13
|
-
"version": "1.1.
|
|
13
|
+
"version": "1.1.25",
|
|
14
14
|
"description": "Finalytic graphql",
|
|
15
15
|
"main": "build/main/index.js",
|
|
16
16
|
"module": "build/module/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"license": "UNLICENSED",
|
|
20
20
|
"keywords": [],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@
|
|
22
|
+
"@vrplatform/utils": "^1.0.4",
|
|
23
23
|
"@gqty/subscriptions": "^2.0.1-alpha-00594c5.0",
|
|
24
24
|
"gqty": "2.3.0",
|
|
25
25
|
"graphql": "^16.11.0"
|
package/src/client/index.ts
CHANGED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
formatResponse,
|
|
4
4
|
type RetryableFetchParams,
|
|
5
5
|
useRetryableFetch,
|
|
6
|
-
} from '@
|
|
6
|
+
} from '@vrplatform/utils';
|
|
7
7
|
import { createClient, type GQtyClient } from 'gqty';
|
|
8
8
|
import { hasuraGraphqlUri, hasuraQueryTypeHeader } from '../constants';
|
|
9
9
|
import {
|
package/src/common/listings.ts
CHANGED
package/src/common/tenant.ts
CHANGED
package/LICENSE
DELETED