rsl-api-106 106.291.4 → 106.291.6

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.
@@ -1 +1 @@
1
- export declare const addBankAccountMutation: () => string;
1
+ export declare const addBankAccountMutation: () => import("@apollo/client").DocumentNode;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.addBankAccountMutation = void 0;
4
+ const client_1 = require("@apollo/client");
4
5
  const bankAccount_1 = require("../outputs/bankAccount");
5
6
  const addBankAccountMutation = () => {
6
- return `
7
+ return (0, client_1.gql) `
7
8
  query addBankAccount($session: Session!, $input: AddBankAccountInput) {
8
9
  addBankAccount(
9
10
  session: $session,
@@ -1 +1 @@
1
- export declare const changeOwnerInvoiceStatusToSentMutation: () => string;
1
+ export declare const changeOwnerInvoiceStatusToSentMutation: () => import("@apollo/client").DocumentNode;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.changeOwnerInvoiceStatusToSentMutation = void 0;
4
+ const client_1 = require("@apollo/client");
4
5
  const ownerInvoice_1 = require("../outputs/ownerInvoice");
5
6
  const changeOwnerInvoiceStatusToSentMutation = () => {
6
- return `
7
+ return (0, client_1.gql) `
7
8
  query changeOwnerInvoiceStatusToSent($session: Session!, $input: ChangeOwnerInvoiceStatusToSentInput!) {
8
9
  changeOwnerInvoiceStatusToSent(
9
10
  session: $session,
@@ -1 +1 @@
1
- export declare const changeOwnerLeasesBankAccountMutation: () => string;
1
+ export declare const changeOwnerLeasesBankAccountMutation: () => import("@apollo/client").DocumentNode;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.changeOwnerLeasesBankAccountMutation = void 0;
4
+ const client_1 = require("@apollo/client");
4
5
  const ownerLease_1 = require("../outputs/ownerLease");
5
6
  const changeOwnerLeasesBankAccountMutation = () => {
6
- return `
7
+ return (0, client_1.gql) `
7
8
  query changeOwnerLeasesBankAccount($session: Session!, $input: ChangeOwnerLeasesBankAccountInput!) {
8
9
  changeOwnerLeasesBankAccount(
9
10
  session: $session,
@@ -1 +1 @@
1
- export declare const disputeOwnerInvoiceMutation: () => string;
1
+ export declare const disputeOwnerInvoiceMutation: () => import("@apollo/client").DocumentNode;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.disputeOwnerInvoiceMutation = void 0;
4
+ const client_1 = require("@apollo/client");
4
5
  const ownerInvoice_1 = require("../outputs/ownerInvoice");
5
6
  const disputeOwnerInvoiceMutation = () => {
6
- return `
7
+ return (0, client_1.gql) `
7
8
  query disputeOwnerInvoice($session: Session!, $input: DisputeOwnerInvoiceInput!) {
8
9
  disputeOwnerInvoice(
9
10
  session: $session,
@@ -1 +1 @@
1
- export declare const removeBankAccountMutation: () => string;
1
+ export declare const removeBankAccountMutation: () => import("@apollo/client").DocumentNode;
@@ -1,16 +1,17 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.removeBankAccountMutation = void 0;
4
+ const client_1 = require("@apollo/client");
4
5
  const removeBankAccountMutation = () => {
5
- return `
6
- query removeBankAccount($session: Session!, $input: RemoveBankAccountInput) {
7
- removeBankAccount(
8
- session: $session,
9
- input: $input
10
- ) {
11
- removed
12
- }
13
- }
14
- `;
6
+ return (0, client_1.gql) `
7
+ query removeBankAccount(
8
+ $session: Session!
9
+ $input: RemoveBankAccountInput
10
+ ) {
11
+ removeBankAccount(session: $session, input: $input) {
12
+ removed
13
+ }
14
+ }
15
+ `;
15
16
  };
16
17
  exports.removeBankAccountMutation = removeBankAccountMutation;
@@ -5,7 +5,7 @@ const client_1 = require("@apollo/client");
5
5
  const service_1 = require("../outputs/service");
6
6
  const updateOwnerAccountMutation = () => {
7
7
  return (0, client_1.gql) `
8
- query updateOwnerAccount($session: Session!, $input: CustomerAccountInput) {
8
+ mutation updateOwnerAccount($session: Session!, $input: CustomerAccountInput) {
9
9
  updateOwnerAccount(
10
10
  session: $session,
11
11
  input: $input
@@ -1 +1 @@
1
- export declare const validateOwnerInvoicesMutation: () => string;
1
+ export declare const validateOwnerInvoicesMutation: () => import("@apollo/client").DocumentNode;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.validateOwnerInvoicesMutation = void 0;
4
+ const client_1 = require("@apollo/client");
4
5
  const ownerInvoice_1 = require("../outputs/ownerInvoice");
5
6
  const validateOwnerInvoicesMutation = () => {
6
- return `
7
+ return (0, client_1.gql) `
7
8
  query validateOwnerInvoices($session: Session!, $input: ValidateOwnerInvoicesInput!) {
8
9
  validateOwnerInvoices(
9
10
  session: $session,
@@ -1 +1 @@
1
- export declare const getBankAccountsQuery: () => string;
1
+ export declare const getBankAccountsQuery: () => import("@apollo/client").DocumentNode;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getBankAccountsQuery = void 0;
4
+ const client_1 = require("@apollo/client");
4
5
  const bankAccount_1 = require("../outputs/bankAccount");
5
6
  const getBankAccountsQuery = () => {
6
- return `
7
+ return (0, client_1.gql) `
7
8
  query getBankAccounts($session: Session!) {
8
9
  getBankAccounts(
9
10
  session: $session
@@ -1 +1 @@
1
- export declare const getOwnerServiceChargeInvoicesDocumentQuery: () => string;
1
+ export declare const getOwnerServiceChargeInvoicesDocumentQuery: () => import("@apollo/client").DocumentNode;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getOwnerServiceChargeInvoicesDocumentQuery = void 0;
4
+ const client_1 = require("@apollo/client");
4
5
  const ownerServiceChargeInvoiceDocument_1 = require("../outputs/ownerServiceChargeInvoiceDocument");
5
6
  const getOwnerServiceChargeInvoicesDocumentQuery = () => {
6
- return `
7
+ return (0, client_1.gql) `
7
8
  query getOwnerServiceChargeInvoicesDocument($session: Session!) {
8
9
  getOwnerServiceChargeInvoicesDocument(
9
10
  session: $session
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rsl-api-106",
3
- "version": "106.291.4",
3
+ "version": "106.291.6",
4
4
  "description": "TypeScript NPM Module for Resalys's GraphQL API (106)",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {