@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.
- package/cjs/mesh-artifacts/index.js +603 -416
- package/cjs/mesh-artifacts/schema.graphql +892 -748
- package/cjs/mesh-artifacts/sources/GreenInvoice/schema.graphql +885 -743
- package/cjs/mesh-artifacts/sources/GreenInvoice/schemaWithAnnotations.js +12447 -10635
- 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 +602 -415
- package/esm/mesh-artifacts/schema.graphql +892 -748
- package/esm/mesh-artifacts/sources/GreenInvoice/schema.graphql +885 -743
- package/esm/mesh-artifacts/sources/GreenInvoice/schemaWithAnnotations.js +12447 -10635
- 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 +1031 -823
- package/package.json +2 -2
- package/typings/mesh-artifacts/index.d.cts +1455 -1202
- package/typings/mesh-artifacts/index.d.ts +1455 -1202
- package/typings/mesh-artifacts/sources/GreenInvoice/types.d.cts +780 -643
- package/typings/mesh-artifacts/sources/GreenInvoice/types.d.ts +780 -643
- 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<_DOLLAR_defs_getFileUploadUrlResponse>;
|
|
63
|
+
getBankTransactions?: Maybe<_DOLLAR_defs_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 _DOLLAR_defs_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 _DOLLAR_defs_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<_DOLLAR_defs_BankTransaction>>>;
|
|
110
110
|
};
|
|
111
|
-
type
|
|
111
|
+
type _DOLLAR_defs_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<_DOLLAR_defs_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 _DOLLAR_defs_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<_DOLLAR_defs_getFileUploadUrlResponse>;
|
|
63
|
+
getBankTransactions?: Maybe<_DOLLAR_defs_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 _DOLLAR_defs_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 _DOLLAR_defs_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<_DOLLAR_defs_BankTransaction>>>;
|
|
110
110
|
};
|
|
111
|
-
type
|
|
111
|
+
type _DOLLAR_defs_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<_DOLLAR_defs_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 _DOLLAR_defs_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 = {
|