@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
|
@@ -59,8 +59,8 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
type Query = {
|
|
62
|
-
getFileUploadUrl?: Maybe<
|
|
63
|
-
getBankTransactions?: Maybe<
|
|
62
|
+
getFileUploadUrl?: Maybe<getFileUploadUrlResponse>;
|
|
63
|
+
getBankTransactions?: Maybe<getBankTransactionsResponse>;
|
|
64
64
|
};
|
|
65
65
|
type QuerygetFileUploadUrlArgs = {
|
|
66
66
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72,7 +72,7 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
72
72
|
size?: InputMaybe<Scalars['Float']['input']>;
|
|
73
73
|
bookingStatus?: InputMaybe<Scalars['String']['input']>;
|
|
74
74
|
};
|
|
75
|
-
type
|
|
75
|
+
type getFileUploadUrlResponse = {
|
|
76
76
|
/** File Upload URL */
|
|
77
77
|
url: Scalars['String']['output'];
|
|
78
78
|
fields: query_getFileUploadUrl_fields;
|
|
@@ -98,7 +98,7 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
98
98
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
99
99
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
100
100
|
};
|
|
101
|
-
type
|
|
101
|
+
type getBankTransactionsResponse = {
|
|
102
102
|
size?: Maybe<Scalars['Int']['output']>;
|
|
103
103
|
total?: Maybe<Scalars['Int']['output']>;
|
|
104
104
|
pages?: Maybe<Scalars['Int']['output']>;
|
|
@@ -106,9 +106,9 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
106
106
|
from?: Maybe<Scalars['Int']['output']>;
|
|
107
107
|
to?: Maybe<Scalars['Int']['output']>;
|
|
108
108
|
aggregations?: Maybe<Scalars['JSON']['output']>;
|
|
109
|
-
results?: Maybe<Array<Maybe<
|
|
109
|
+
results?: Maybe<Array<Maybe<BankTransaction>>>;
|
|
110
110
|
};
|
|
111
|
-
type
|
|
111
|
+
type BankTransaction = {
|
|
112
112
|
/** The transaction ID */
|
|
113
113
|
id?: Maybe<Scalars['String']['output']>;
|
|
114
114
|
aspspCode?: Maybe<_12_const>;
|
|
@@ -130,7 +130,7 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
130
130
|
creditorName?: Maybe<Scalars['String']['output']>;
|
|
131
131
|
/** The creditor account */
|
|
132
132
|
creditorAccount?: Maybe<Scalars['String']['output']>;
|
|
133
|
-
currency?: Maybe<
|
|
133
|
+
currency?: Maybe<Currency>;
|
|
134
134
|
/** Value date of the transaction */
|
|
135
135
|
valueDate?: Maybe<Scalars['String']['output']>;
|
|
136
136
|
/** Booking date of the transaction */
|
|
@@ -152,7 +152,7 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
152
152
|
type booked_const = 'booked';
|
|
153
153
|
type bank_const = 'bank';
|
|
154
154
|
/** 3-letter ISO item currency code */
|
|
155
|
-
type
|
|
155
|
+
type Currency = 'ILS' | 'USD' | 'EUR' | 'GBP' | 'JPY' | 'CHF' | 'CNY' | 'AUD' | 'CAD' | 'RUB' | 'BRL' | 'HKD' | 'SGD' | 'THB' | 'MXN' | 'TRY' | 'NZD' | 'SEK' | 'NOK' | 'DKK' | 'KRW' | 'INR' | 'IDR' | 'PLN' | 'RON' | 'ZAR' | 'HRK';
|
|
156
156
|
/** The type of the transaction */
|
|
157
157
|
type query_getBankTransactions_results_items_type = 'credit' | 'debt';
|
|
158
158
|
type queryInput_getBankTransactions_valueDate_Input = {
|
|
@@ -59,8 +59,8 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
59
59
|
};
|
|
60
60
|
};
|
|
61
61
|
type Query = {
|
|
62
|
-
getFileUploadUrl?: Maybe<
|
|
63
|
-
getBankTransactions?: Maybe<
|
|
62
|
+
getFileUploadUrl?: Maybe<getFileUploadUrlResponse>;
|
|
63
|
+
getBankTransactions?: Maybe<getBankTransactionsResponse>;
|
|
64
64
|
};
|
|
65
65
|
type QuerygetFileUploadUrlArgs = {
|
|
66
66
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72,7 +72,7 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
72
72
|
size?: InputMaybe<Scalars['Float']['input']>;
|
|
73
73
|
bookingStatus?: InputMaybe<Scalars['String']['input']>;
|
|
74
74
|
};
|
|
75
|
-
type
|
|
75
|
+
type getFileUploadUrlResponse = {
|
|
76
76
|
/** File Upload URL */
|
|
77
77
|
url: Scalars['String']['output'];
|
|
78
78
|
fields: query_getFileUploadUrl_fields;
|
|
@@ -98,7 +98,7 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
98
98
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
99
99
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
100
100
|
};
|
|
101
|
-
type
|
|
101
|
+
type getBankTransactionsResponse = {
|
|
102
102
|
size?: Maybe<Scalars['Int']['output']>;
|
|
103
103
|
total?: Maybe<Scalars['Int']['output']>;
|
|
104
104
|
pages?: Maybe<Scalars['Int']['output']>;
|
|
@@ -106,9 +106,9 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
106
106
|
from?: Maybe<Scalars['Int']['output']>;
|
|
107
107
|
to?: Maybe<Scalars['Int']['output']>;
|
|
108
108
|
aggregations?: Maybe<Scalars['JSON']['output']>;
|
|
109
|
-
results?: Maybe<Array<Maybe<
|
|
109
|
+
results?: Maybe<Array<Maybe<BankTransaction>>>;
|
|
110
110
|
};
|
|
111
|
-
type
|
|
111
|
+
type BankTransaction = {
|
|
112
112
|
/** The transaction ID */
|
|
113
113
|
id?: Maybe<Scalars['String']['output']>;
|
|
114
114
|
aspspCode?: Maybe<_12_const>;
|
|
@@ -130,7 +130,7 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
130
130
|
creditorName?: Maybe<Scalars['String']['output']>;
|
|
131
131
|
/** The creditor account */
|
|
132
132
|
creditorAccount?: Maybe<Scalars['String']['output']>;
|
|
133
|
-
currency?: Maybe<
|
|
133
|
+
currency?: Maybe<Currency>;
|
|
134
134
|
/** Value date of the transaction */
|
|
135
135
|
valueDate?: Maybe<Scalars['String']['output']>;
|
|
136
136
|
/** Booking date of the transaction */
|
|
@@ -152,7 +152,7 @@ export declare namespace GreenInvoiceNewTypes {
|
|
|
152
152
|
type booked_const = 'booked';
|
|
153
153
|
type bank_const = 'bank';
|
|
154
154
|
/** 3-letter ISO item currency code */
|
|
155
|
-
type
|
|
155
|
+
type Currency = 'ILS' | 'USD' | 'EUR' | 'GBP' | 'JPY' | 'CHF' | 'CNY' | 'AUD' | 'CAD' | 'RUB' | 'BRL' | 'HKD' | 'SGD' | 'THB' | 'MXN' | 'TRY' | 'NZD' | 'SEK' | 'NOK' | 'DKK' | 'KRW' | 'INR' | 'IDR' | 'PLN' | 'RON' | 'ZAR' | 'HRK';
|
|
156
156
|
/** The type of the transaction */
|
|
157
157
|
type query_getBankTransactions_results_items_type = 'credit' | 'debt';
|
|
158
158
|
type queryInput_getBankTransactions_valueDate_Input = {
|