@accounter/green-invoice-graphql 0.8.2-alpha-20251102162844-adaba3b25910083f6ebd80bd580629e1c0871260 → 0.8.2-alpha-20251102200443-d7162b8ce1dfc629b8b454df17dcec9ed005a052

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.
@@ -15,11 +15,11 @@ directive @httpOperation(subgraph: String, path: String, operationSpecificHeader
15
15
  directive @transport(subgraph: String, kind: String, location: String, headers: [[String]], queryStringOptions: ObjMap, queryParams: [[String]]) repeatable on SCHEMA
16
16
 
17
17
  type Query {
18
- getFileUploadUrl(context: String, data: queryInput_getFileUploadUrl_data_Input): getFileUploadUrlResponse @httpOperation(subgraph: "GreenInvoiceNew", path: "/file-upload/v1/url", httpMethod: GET, queryParamArgMap: "{\"context\":\"context\",\"data\":\"data\"}", queryStringOptions: "{\"jsonStringify\":true}")
19
- getBankTransactions(valueDate: queryInput_getBankTransactions_valueDate_Input, from: Float, size: Float, bookingStatus: String): getBankTransactionsResponse @httpOperation(subgraph: "GreenInvoiceNew", path: "/open-banking/v2/transactions", httpMethod: GET, queryParamArgMap: "{\"valueDate\":\"valueDate\",\"from\":\"from\",\"size\":\"size\",\"bookingStatus\":\"bookingStatus\"}", queryStringOptions: "{\"indices\":true,\"arrayFormat\":\"brackets\"}")
18
+ getFileUploadUrl(context: String, data: queryInput_getFileUploadUrl_data_Input): _DOLLAR_defs_getFileUploadUrlResponse @httpOperation(subgraph: "GreenInvoiceNew", path: "/file-upload/v1/url", httpMethod: GET, queryParamArgMap: "{\"context\":\"context\",\"data\":\"data\"}", queryStringOptions: "{\"jsonStringify\":true}")
19
+ getBankTransactions(valueDate: queryInput_getBankTransactions_valueDate_Input, from: Float, size: Float, bookingStatus: String): _DOLLAR_defs_getBankTransactionsResponse @httpOperation(subgraph: "GreenInvoiceNew", path: "/open-banking/v2/transactions", httpMethod: GET, queryParamArgMap: "{\"valueDate\":\"valueDate\",\"from\":\"from\",\"size\":\"size\",\"bookingStatus\":\"bookingStatus\"}", queryStringOptions: "{\"indices\":true,\"arrayFormat\":\"brackets\"}")
20
20
  }
21
21
 
22
- type getFileUploadUrlResponse {
22
+ type _DOLLAR_defs_getFileUploadUrlResponse {
23
23
  """File Upload URL"""
24
24
  url: String!
25
25
  fields: query_getFileUploadUrl_fields!
@@ -48,7 +48,7 @@ input queryInput_getFileUploadUrl_data_Input {
48
48
  state: String
49
49
  }
50
50
 
51
- type getBankTransactionsResponse {
51
+ type _DOLLAR_defs_getBankTransactionsResponse {
52
52
  size: Int
53
53
  total: Int
54
54
  pages: Int
@@ -56,7 +56,7 @@ type getBankTransactionsResponse {
56
56
  from: Int
57
57
  to: Int
58
58
  aggregations: JSON
59
- results: [BankTransaction]
59
+ results: [_DOLLAR_defs_BankTransaction]
60
60
  }
61
61
 
62
62
  """
@@ -64,7 +64,7 @@ The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://
64
64
  """
65
65
  scalar JSON @specifiedBy(url: "http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf")
66
66
 
67
- type BankTransaction {
67
+ type _DOLLAR_defs_BankTransaction {
68
68
  """The transaction ID"""
69
69
  id: String
70
70
  aspspCode: _12_const
@@ -86,7 +86,7 @@ type BankTransaction {
86
86
  creditorName: String
87
87
  """The creditor account"""
88
88
  creditorAccount: String
89
- currency: Currency
89
+ currency: _DOLLAR_defs_Currency
90
90
  """Value date of the transaction"""
91
91
  valueDate: String
92
92
  """Booking date of the transaction"""
@@ -118,7 +118,7 @@ enum bank_const @typescript(subgraph: "GreenInvoiceNew", type: "\"bank\"") @exam
118
118
  }
119
119
 
120
120
  """3-letter ISO item currency code"""
121
- enum Currency {
121
+ enum _DOLLAR_defs_Currency {
122
122
  ILS
123
123
  USD
124
124
  EUR
@@ -654,7 +654,7 @@ const schemaAST = {
654
654
  "kind": "NamedType",
655
655
  "name": {
656
656
  "kind": "Name",
657
- "value": "getFileUploadUrlResponse"
657
+ "value": "_DOLLAR_defs_getFileUploadUrlResponse"
658
658
  }
659
659
  },
660
660
  "directives": [
@@ -796,7 +796,7 @@ const schemaAST = {
796
796
  "kind": "NamedType",
797
797
  "name": {
798
798
  "kind": "Name",
799
- "value": "getBankTransactionsResponse"
799
+ "value": "_DOLLAR_defs_getBankTransactionsResponse"
800
800
  }
801
801
  },
802
802
  "directives": [
@@ -874,7 +874,7 @@ const schemaAST = {
874
874
  "kind": "ObjectTypeDefinition",
875
875
  "name": {
876
876
  "kind": "Name",
877
- "value": "getFileUploadUrlResponse"
877
+ "value": "_DOLLAR_defs_getFileUploadUrlResponse"
878
878
  },
879
879
  "fields": [
880
880
  {
@@ -1541,7 +1541,7 @@ const schemaAST = {
1541
1541
  "kind": "ObjectTypeDefinition",
1542
1542
  "name": {
1543
1543
  "kind": "Name",
1544
- "value": "getBankTransactionsResponse"
1544
+ "value": "_DOLLAR_defs_getBankTransactionsResponse"
1545
1545
  },
1546
1546
  "fields": [
1547
1547
  {
@@ -1669,7 +1669,7 @@ const schemaAST = {
1669
1669
  "kind": "NamedType",
1670
1670
  "name": {
1671
1671
  "kind": "Name",
1672
- "value": "BankTransaction"
1672
+ "value": "_DOLLAR_defs_BankTransaction"
1673
1673
  }
1674
1674
  }
1675
1675
  },
@@ -1717,7 +1717,7 @@ const schemaAST = {
1717
1717
  "kind": "ObjectTypeDefinition",
1718
1718
  "name": {
1719
1719
  "kind": "Name",
1720
- "value": "BankTransaction"
1720
+ "value": "_DOLLAR_defs_BankTransaction"
1721
1721
  },
1722
1722
  "fields": [
1723
1723
  {
@@ -1979,7 +1979,7 @@ const schemaAST = {
1979
1979
  "kind": "NamedType",
1980
1980
  "name": {
1981
1981
  "kind": "Name",
1982
- "value": "Currency"
1982
+ "value": "_DOLLAR_defs_Currency"
1983
1983
  }
1984
1984
  },
1985
1985
  "directives": []
@@ -2526,7 +2526,7 @@ const schemaAST = {
2526
2526
  },
2527
2527
  "name": {
2528
2528
  "kind": "Name",
2529
- "value": "Currency"
2529
+ "value": "_DOLLAR_defs_Currency"
2530
2530
  },
2531
2531
  "values": [
2532
2532
  {