@iota/graphql-transport 0.7.0 → 0.9.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.
@@ -3,11 +3,6 @@ var AddressTransactionBlockRelationship = /* @__PURE__ */ ((AddressTransactionBl
3
3
  AddressTransactionBlockRelationship2["Sign"] = "SIGN";
4
4
  return AddressTransactionBlockRelationship2;
5
5
  })(AddressTransactionBlockRelationship || {});
6
- var DomainFormat = /* @__PURE__ */ ((DomainFormat2) => {
7
- DomainFormat2["At"] = "AT";
8
- DomainFormat2["Dot"] = "DOT";
9
- return DomainFormat2;
10
- })(DomainFormat || {});
11
6
  var ExecutionStatus = /* @__PURE__ */ ((ExecutionStatus2) => {
12
7
  ExecutionStatus2["Failure"] = "FAILURE";
13
8
  ExecutionStatus2["Success"] = "SUCCESS";
@@ -34,6 +29,11 @@ var MoveVisibility = /* @__PURE__ */ ((MoveVisibility2) => {
34
29
  MoveVisibility2["Public"] = "PUBLIC";
35
30
  return MoveVisibility2;
36
31
  })(MoveVisibility || {});
32
+ var NameFormat = /* @__PURE__ */ ((NameFormat2) => {
33
+ NameFormat2["At"] = "AT";
34
+ NameFormat2["Dot"] = "DOT";
35
+ return NameFormat2;
36
+ })(NameFormat || {});
37
37
  var ObjectKind = /* @__PURE__ */ ((ObjectKind2) => {
38
38
  ObjectKind2["Indexed"] = "INDEXED";
39
39
  ObjectKind2["NotIndexed"] = "NOT_INDEXED";
@@ -2051,8 +2051,8 @@ const GetValidatorsApyDocument = new TypedDocumentString(`
2051
2051
  }
2052
2052
  `);
2053
2053
  const ResolveNameServiceAddressDocument = new TypedDocumentString(`
2054
- query resolveNameServiceAddress($domain: String!) {
2055
- resolveIotaNamesAddress(domain: $domain) {
2054
+ query resolveNameServiceAddress($name: String!) {
2055
+ resolveIotaNamesAddress(name: $name) {
2056
2056
  address
2057
2057
  }
2058
2058
  }
@@ -2066,7 +2066,7 @@ const ResolveNameServiceNamesDocument = new TypedDocumentString(`
2066
2066
  endCursor
2067
2067
  }
2068
2068
  nodes {
2069
- domain
2069
+ name
2070
2070
  }
2071
2071
  }
2072
2072
  }
@@ -2904,7 +2904,6 @@ fragment PAGINATE_TRANSACTION_LISTS on TransactionBlock {
2904
2904
  export {
2905
2905
  AddressTransactionBlockRelationship,
2906
2906
  DevInspectTransactionBlockDocument,
2907
- DomainFormat,
2908
2907
  DryRunTransactionBlockDocument,
2909
2908
  ExecuteTransactionBlockDocument,
2910
2909
  ExecutionStatus,
@@ -2942,6 +2941,7 @@ export {
2942
2941
  MoveVisibility,
2943
2942
  MultiGetObjectsDocument,
2944
2943
  MultiGetTransactionBlocksDocument,
2944
+ NameFormat,
2945
2945
  ObjectKind,
2946
2946
  PaginateCheckpointTransactionBlocksDocument,
2947
2947
  PaginateEpochValidatorsDocument,