@accounter/green-invoice-graphql 0.8.2-alpha-20251102160658-6d41b0a7bb225382246645badf39a28bcd8102e1 → 0.8.2-alpha-20251102162844-adaba3b25910083f6ebd80bd580629e1c0871260
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/cjs/mesh-artifacts/index.js +428 -615
- package/cjs/mesh-artifacts/schema.graphql +799 -943
- package/cjs/mesh-artifacts/sources/GreenInvoice/schema.graphql +795 -937
- package/cjs/mesh-artifacts/sources/GreenInvoice/schemaWithAnnotations.js +9268 -11080
- package/cjs/mesh-artifacts/sources/GreenInvoiceNew/schema.graphql +8 -8
- package/cjs/mesh-artifacts/sources/GreenInvoiceNew/schemaWithAnnotations.js +8 -8
- package/esm/mesh-artifacts/index.js +427 -614
- package/esm/mesh-artifacts/schema.graphql +799 -943
- package/esm/mesh-artifacts/sources/GreenInvoice/schema.graphql +795 -937
- package/esm/mesh-artifacts/sources/GreenInvoice/schemaWithAnnotations.js +9268 -11080
- package/esm/mesh-artifacts/sources/GreenInvoiceNew/schema.graphql +8 -8
- package/esm/mesh-artifacts/sources/GreenInvoiceNew/schemaWithAnnotations.js +8 -8
- package/json-schemas/greenInvoice.json +827 -1035
- package/package.json +2 -2
- package/typings/mesh-artifacts/index.d.cts +1191 -1444
- package/typings/mesh-artifacts/index.d.ts +1191 -1444
- package/typings/mesh-artifacts/sources/GreenInvoice/types.d.cts +639 -776
- package/typings/mesh-artifacts/sources/GreenInvoice/types.d.ts +639 -776
- package/typings/mesh-artifacts/sources/GreenInvoiceNew/types.d.cts +8 -8
- package/typings/mesh-artifacts/sources/GreenInvoiceNew/types.d.ts +8 -8
|
@@ -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):
|
|
19
|
-
getBankTransactions(valueDate: queryInput_getBankTransactions_valueDate_Input, from: Float, size: Float, bookingStatus: String):
|
|
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\"}")
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
type
|
|
22
|
+
type 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
|
|
51
|
+
type getBankTransactionsResponse {
|
|
52
52
|
size: Int
|
|
53
53
|
total: Int
|
|
54
54
|
pages: Int
|
|
@@ -56,7 +56,7 @@ type _DOLLAR_defs_getBankTransactionsResponse {
|
|
|
56
56
|
from: Int
|
|
57
57
|
to: Int
|
|
58
58
|
aggregations: JSON
|
|
59
|
-
results: [
|
|
59
|
+
results: [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
|
|
67
|
+
type BankTransaction {
|
|
68
68
|
"""The transaction ID"""
|
|
69
69
|
id: String
|
|
70
70
|
aspspCode: _12_const
|
|
@@ -86,7 +86,7 @@ type _DOLLAR_defs_BankTransaction {
|
|
|
86
86
|
creditorName: String
|
|
87
87
|
"""The creditor account"""
|
|
88
88
|
creditorAccount: String
|
|
89
|
-
currency:
|
|
89
|
+
currency: 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
|
|
121
|
+
enum Currency {
|
|
122
122
|
ILS
|
|
123
123
|
USD
|
|
124
124
|
EUR
|
|
@@ -652,7 +652,7 @@ const schemaAST = {
|
|
|
652
652
|
"kind": "NamedType",
|
|
653
653
|
"name": {
|
|
654
654
|
"kind": "Name",
|
|
655
|
-
"value": "
|
|
655
|
+
"value": "getFileUploadUrlResponse"
|
|
656
656
|
}
|
|
657
657
|
},
|
|
658
658
|
"directives": [
|
|
@@ -794,7 +794,7 @@ const schemaAST = {
|
|
|
794
794
|
"kind": "NamedType",
|
|
795
795
|
"name": {
|
|
796
796
|
"kind": "Name",
|
|
797
|
-
"value": "
|
|
797
|
+
"value": "getBankTransactionsResponse"
|
|
798
798
|
}
|
|
799
799
|
},
|
|
800
800
|
"directives": [
|
|
@@ -872,7 +872,7 @@ const schemaAST = {
|
|
|
872
872
|
"kind": "ObjectTypeDefinition",
|
|
873
873
|
"name": {
|
|
874
874
|
"kind": "Name",
|
|
875
|
-
"value": "
|
|
875
|
+
"value": "getFileUploadUrlResponse"
|
|
876
876
|
},
|
|
877
877
|
"fields": [
|
|
878
878
|
{
|
|
@@ -1539,7 +1539,7 @@ const schemaAST = {
|
|
|
1539
1539
|
"kind": "ObjectTypeDefinition",
|
|
1540
1540
|
"name": {
|
|
1541
1541
|
"kind": "Name",
|
|
1542
|
-
"value": "
|
|
1542
|
+
"value": "getBankTransactionsResponse"
|
|
1543
1543
|
},
|
|
1544
1544
|
"fields": [
|
|
1545
1545
|
{
|
|
@@ -1667,7 +1667,7 @@ const schemaAST = {
|
|
|
1667
1667
|
"kind": "NamedType",
|
|
1668
1668
|
"name": {
|
|
1669
1669
|
"kind": "Name",
|
|
1670
|
-
"value": "
|
|
1670
|
+
"value": "BankTransaction"
|
|
1671
1671
|
}
|
|
1672
1672
|
}
|
|
1673
1673
|
},
|
|
@@ -1715,7 +1715,7 @@ const schemaAST = {
|
|
|
1715
1715
|
"kind": "ObjectTypeDefinition",
|
|
1716
1716
|
"name": {
|
|
1717
1717
|
"kind": "Name",
|
|
1718
|
-
"value": "
|
|
1718
|
+
"value": "BankTransaction"
|
|
1719
1719
|
},
|
|
1720
1720
|
"fields": [
|
|
1721
1721
|
{
|
|
@@ -1977,7 +1977,7 @@ const schemaAST = {
|
|
|
1977
1977
|
"kind": "NamedType",
|
|
1978
1978
|
"name": {
|
|
1979
1979
|
"kind": "Name",
|
|
1980
|
-
"value": "
|
|
1980
|
+
"value": "Currency"
|
|
1981
1981
|
}
|
|
1982
1982
|
},
|
|
1983
1983
|
"directives": []
|
|
@@ -2524,7 +2524,7 @@ const schemaAST = {
|
|
|
2524
2524
|
},
|
|
2525
2525
|
"name": {
|
|
2526
2526
|
"kind": "Name",
|
|
2527
|
-
"value": "
|
|
2527
|
+
"value": "Currency"
|
|
2528
2528
|
},
|
|
2529
2529
|
"values": [
|
|
2530
2530
|
{
|