orb-billing 5.3.0 → 5.5.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.
- package/CHANGELOG.md +16 -0
- package/index.d.mts +2 -2
- package/index.d.ts +2 -2
- package/index.d.ts.map +1 -1
- package/index.js.map +1 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/customers/costs.d.ts +2 -2
- package/resources/customers/credits/ledger.d.ts +2 -2
- package/resources/customers/credits/ledger.d.ts.map +1 -1
- package/resources/customers/customers.d.ts +566 -404
- package/resources/customers/customers.d.ts.map +1 -1
- package/resources/customers/customers.js.map +1 -1
- package/resources/customers/customers.mjs.map +1 -1
- package/resources/dimensional-price-groups/dimensional-price-groups.d.ts +26 -3
- package/resources/dimensional-price-groups/dimensional-price-groups.d.ts.map +1 -1
- package/resources/dimensional-price-groups/dimensional-price-groups.js +8 -0
- package/resources/dimensional-price-groups/dimensional-price-groups.js.map +1 -1
- package/resources/dimensional-price-groups/dimensional-price-groups.mjs +9 -1
- package/resources/dimensional-price-groups/dimensional-price-groups.mjs.map +1 -1
- package/resources/dimensional-price-groups/external-dimensional-price-group-id.d.ts +26 -0
- package/resources/dimensional-price-groups/external-dimensional-price-group-id.d.ts.map +1 -1
- package/resources/dimensional-price-groups/external-dimensional-price-group-id.js +8 -0
- package/resources/dimensional-price-groups/external-dimensional-price-group-id.js.map +1 -1
- package/resources/dimensional-price-groups/external-dimensional-price-group-id.mjs +8 -0
- package/resources/dimensional-price-groups/external-dimensional-price-group-id.mjs.map +1 -1
- package/resources/dimensional-price-groups/index.d.ts +2 -2
- package/resources/dimensional-price-groups/index.d.ts.map +1 -1
- package/resources/dimensional-price-groups/index.js.map +1 -1
- package/resources/dimensional-price-groups/index.mjs +1 -1
- package/resources/dimensional-price-groups/index.mjs.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/invoices.d.ts +144 -104
- package/resources/invoices.d.ts.map +1 -1
- package/resources/invoices.js +5 -4
- package/resources/invoices.js.map +1 -1
- package/resources/invoices.mjs +5 -4
- package/resources/invoices.mjs.map +1 -1
- package/resources/shared.d.ts +338 -203
- package/resources/shared.d.ts.map +1 -1
- package/resources/shared.js.map +1 -1
- package/resources/shared.mjs.map +1 -1
- package/resources/subscriptions.d.ts +1 -1
- package/src/index.ts +2 -0
- package/src/resources/customers/costs.ts +2 -2
- package/src/resources/customers/credits/ledger.ts +2 -2
- package/src/resources/customers/customers.ts +566 -404
- package/src/resources/dimensional-price-groups/dimensional-price-groups.ts +39 -2
- package/src/resources/dimensional-price-groups/external-dimensional-price-group-id.ts +37 -0
- package/src/resources/dimensional-price-groups/index.ts +5 -1
- package/src/resources/index.ts +1 -0
- package/src/resources/invoices.ts +144 -104
- package/src/resources/shared.ts +436 -205
- package/src/resources/subscriptions.ts +1 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -5,7 +5,10 @@ import { isRequestOptions } from '../../core';
|
|
|
5
5
|
import * as Core from '../../core';
|
|
6
6
|
import * as Shared from '../shared';
|
|
7
7
|
import * as ExternalDimensionalPriceGroupIDAPI from './external-dimensional-price-group-id';
|
|
8
|
-
import {
|
|
8
|
+
import {
|
|
9
|
+
ExternalDimensionalPriceGroupID,
|
|
10
|
+
ExternalDimensionalPriceGroupIDUpdateParams,
|
|
11
|
+
} from './external-dimensional-price-group-id';
|
|
9
12
|
import { Page, type PageParams } from '../../pagination';
|
|
10
13
|
|
|
11
14
|
export class DimensionalPriceGroups extends APIResource {
|
|
@@ -39,6 +42,19 @@ export class DimensionalPriceGroups extends APIResource {
|
|
|
39
42
|
return this._client.get(`/dimensional_price_groups/${dimensionalPriceGroupId}`, options);
|
|
40
43
|
}
|
|
41
44
|
|
|
45
|
+
/**
|
|
46
|
+
* This endpoint can be used to update the `external_dimensional_price_group_id`
|
|
47
|
+
* and `metadata` of an existing dimensional price group. Other fields on a
|
|
48
|
+
* dimensional price group are currently immutable.
|
|
49
|
+
*/
|
|
50
|
+
update(
|
|
51
|
+
dimensionalPriceGroupId: string,
|
|
52
|
+
body: DimensionalPriceGroupUpdateParams,
|
|
53
|
+
options?: Core.RequestOptions,
|
|
54
|
+
): Core.APIPromise<DimensionalPriceGroup> {
|
|
55
|
+
return this._client.put(`/dimensional_price_groups/${dimensionalPriceGroupId}`, { body, ...options });
|
|
56
|
+
}
|
|
57
|
+
|
|
42
58
|
/**
|
|
43
59
|
* List dimensional price groups
|
|
44
60
|
*/
|
|
@@ -128,6 +144,23 @@ export interface DimensionalPriceGroupCreateParams {
|
|
|
128
144
|
metadata?: { [key: string]: string | null } | null;
|
|
129
145
|
}
|
|
130
146
|
|
|
147
|
+
export interface DimensionalPriceGroupUpdateParams {
|
|
148
|
+
/**
|
|
149
|
+
* An optional user-defined ID for this dimensional price group resource, used
|
|
150
|
+
* throughout the system as an alias for this dimensional price group. Use this
|
|
151
|
+
* field to identify a dimensional price group by an existing identifier in your
|
|
152
|
+
* system.
|
|
153
|
+
*/
|
|
154
|
+
external_dimensional_price_group_id?: string | null;
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* User-specified key/value pairs for the resource. Individual keys can be removed
|
|
158
|
+
* by setting the value to `null`, and the entire metadata mapping can be cleared
|
|
159
|
+
* by setting `metadata` to `null`.
|
|
160
|
+
*/
|
|
161
|
+
metadata?: { [key: string]: string | null } | null;
|
|
162
|
+
}
|
|
163
|
+
|
|
131
164
|
export interface DimensionalPriceGroupListParams extends PageParams {}
|
|
132
165
|
|
|
133
166
|
DimensionalPriceGroups.DimensionalPriceGroupsPage = DimensionalPriceGroupsPage;
|
|
@@ -139,8 +172,12 @@ export declare namespace DimensionalPriceGroups {
|
|
|
139
172
|
type DimensionalPriceGroups as DimensionalPriceGroups,
|
|
140
173
|
DimensionalPriceGroupsPage as DimensionalPriceGroupsPage,
|
|
141
174
|
type DimensionalPriceGroupCreateParams as DimensionalPriceGroupCreateParams,
|
|
175
|
+
type DimensionalPriceGroupUpdateParams as DimensionalPriceGroupUpdateParams,
|
|
142
176
|
type DimensionalPriceGroupListParams as DimensionalPriceGroupListParams,
|
|
143
177
|
};
|
|
144
178
|
|
|
145
|
-
export {
|
|
179
|
+
export {
|
|
180
|
+
ExternalDimensionalPriceGroupID as ExternalDimensionalPriceGroupID,
|
|
181
|
+
type ExternalDimensionalPriceGroupIDUpdateParams as ExternalDimensionalPriceGroupIDUpdateParams,
|
|
182
|
+
};
|
|
146
183
|
}
|
|
@@ -17,4 +17,41 @@ export class ExternalDimensionalPriceGroupID extends APIResource {
|
|
|
17
17
|
options,
|
|
18
18
|
);
|
|
19
19
|
}
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* This endpoint can be used to update the `external_dimensional_price_group_id`
|
|
23
|
+
* and `metadata` of an existing dimensional price group. Other fields on a
|
|
24
|
+
* dimensional price group are currently immutable.
|
|
25
|
+
*/
|
|
26
|
+
update(
|
|
27
|
+
externalDimensionalPriceGroupId: string,
|
|
28
|
+
body: ExternalDimensionalPriceGroupIDUpdateParams,
|
|
29
|
+
options?: Core.RequestOptions,
|
|
30
|
+
): Core.APIPromise<DimensionalPriceGroupsAPI.DimensionalPriceGroup> {
|
|
31
|
+
return this._client.put(
|
|
32
|
+
`/dimensional_price_groups/external_dimensional_price_group_id/${externalDimensionalPriceGroupId}`,
|
|
33
|
+
{ body, ...options },
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export interface ExternalDimensionalPriceGroupIDUpdateParams {
|
|
39
|
+
/**
|
|
40
|
+
* An optional user-defined ID for this dimensional price group resource, used
|
|
41
|
+
* throughout the system as an alias for this dimensional price group. Use this
|
|
42
|
+
* field to identify a dimensional price group by an existing identifier in your
|
|
43
|
+
* system.
|
|
44
|
+
*/
|
|
45
|
+
body_external_dimensional_price_group_id?: string | null;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* User-specified key/value pairs for the resource. Individual keys can be removed
|
|
49
|
+
* by setting the value to `null`, and the entire metadata mapping can be cleared
|
|
50
|
+
* by setting `metadata` to `null`.
|
|
51
|
+
*/
|
|
52
|
+
metadata?: { [key: string]: string | null } | null;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export declare namespace ExternalDimensionalPriceGroupID {
|
|
56
|
+
export { type ExternalDimensionalPriceGroupIDUpdateParams as ExternalDimensionalPriceGroupIDUpdateParams };
|
|
20
57
|
}
|
|
@@ -5,6 +5,10 @@ export {
|
|
|
5
5
|
DimensionalPriceGroups,
|
|
6
6
|
type DimensionalPriceGroup,
|
|
7
7
|
type DimensionalPriceGroupCreateParams,
|
|
8
|
+
type DimensionalPriceGroupUpdateParams,
|
|
8
9
|
type DimensionalPriceGroupListParams,
|
|
9
10
|
} from './dimensional-price-groups';
|
|
10
|
-
export {
|
|
11
|
+
export {
|
|
12
|
+
ExternalDimensionalPriceGroupID,
|
|
13
|
+
type ExternalDimensionalPriceGroupIDUpdateParams,
|
|
14
|
+
} from './external-dimensional-price-group-id';
|
package/src/resources/index.ts
CHANGED
|
@@ -59,6 +59,7 @@ export {
|
|
|
59
59
|
DimensionalPriceGroups,
|
|
60
60
|
type DimensionalPriceGroup,
|
|
61
61
|
type DimensionalPriceGroupCreateParams,
|
|
62
|
+
type DimensionalPriceGroupUpdateParams,
|
|
62
63
|
type DimensionalPriceGroupListParams,
|
|
63
64
|
} from './dimensional-price-groups/dimensional-price-groups';
|
|
64
65
|
export {
|
|
@@ -16,11 +16,12 @@ export class Invoices extends APIResource {
|
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
* This endpoint allows you to update the `metadata`
|
|
20
|
-
* pass null for the metadata value, it will clear
|
|
21
|
-
* invoice.
|
|
19
|
+
* This endpoint allows you to update the `metadata`, `net_terms`, and `due_date`
|
|
20
|
+
* properties on an invoice. If you pass null for the metadata value, it will clear
|
|
21
|
+
* any existing metadata for that invoice.
|
|
22
22
|
*
|
|
23
|
-
* `metadata` can be modified regardless of invoice state.
|
|
23
|
+
* `metadata` can be modified regardless of invoice state. `net_terms` and
|
|
24
|
+
* `due_date` can only be modified if the invoice is in a `draft` state.
|
|
24
25
|
*/
|
|
25
26
|
update(
|
|
26
27
|
invoiceId: string,
|
|
@@ -181,106 +182,145 @@ export interface InvoiceFetchUpcomingResponse {
|
|
|
181
182
|
*
|
|
182
183
|
* ### Supported Tax ID Countries and Types
|
|
183
184
|
*
|
|
184
|
-
* | Country
|
|
185
|
-
* |
|
|
186
|
-
* |
|
|
187
|
-
* |
|
|
188
|
-
* |
|
|
189
|
-
* |
|
|
190
|
-
* |
|
|
191
|
-
* |
|
|
192
|
-
* |
|
|
193
|
-
* |
|
|
194
|
-
* |
|
|
195
|
-
* |
|
|
196
|
-
* |
|
|
197
|
-
* |
|
|
198
|
-
* |
|
|
199
|
-
* |
|
|
200
|
-
* |
|
|
201
|
-
* |
|
|
202
|
-
* |
|
|
203
|
-
* |
|
|
204
|
-
* |
|
|
205
|
-
* |
|
|
206
|
-
* |
|
|
207
|
-
* |
|
|
208
|
-
* |
|
|
209
|
-
* |
|
|
210
|
-
* |
|
|
211
|
-
* |
|
|
212
|
-
* |
|
|
213
|
-
* |
|
|
214
|
-
* |
|
|
215
|
-
* |
|
|
216
|
-
* |
|
|
217
|
-
* |
|
|
218
|
-
* |
|
|
219
|
-
* |
|
|
220
|
-
* |
|
|
221
|
-
* |
|
|
222
|
-
* |
|
|
223
|
-
* |
|
|
224
|
-
* |
|
|
225
|
-
* |
|
|
226
|
-
* |
|
|
227
|
-
* |
|
|
228
|
-
* |
|
|
229
|
-
* |
|
|
230
|
-
* |
|
|
231
|
-
* |
|
|
232
|
-
* |
|
|
233
|
-
* |
|
|
234
|
-
* |
|
|
235
|
-
* |
|
|
236
|
-
* |
|
|
237
|
-
* |
|
|
238
|
-
* |
|
|
239
|
-
* |
|
|
240
|
-
* |
|
|
241
|
-
* |
|
|
242
|
-
* |
|
|
243
|
-
* |
|
|
244
|
-
* |
|
|
245
|
-
* |
|
|
246
|
-
* |
|
|
247
|
-
* |
|
|
248
|
-
* |
|
|
249
|
-
* |
|
|
250
|
-
* |
|
|
251
|
-
* |
|
|
252
|
-
* |
|
|
253
|
-
* |
|
|
254
|
-
* |
|
|
255
|
-
* |
|
|
256
|
-
* |
|
|
257
|
-
* |
|
|
258
|
-
* |
|
|
259
|
-
* |
|
|
260
|
-
* |
|
|
261
|
-
* |
|
|
262
|
-
* |
|
|
263
|
-
* |
|
|
264
|
-
* |
|
|
265
|
-
* |
|
|
266
|
-
* |
|
|
267
|
-
* |
|
|
268
|
-
* |
|
|
269
|
-
* |
|
|
270
|
-
* |
|
|
271
|
-
* |
|
|
272
|
-
* |
|
|
273
|
-
* |
|
|
274
|
-
* |
|
|
275
|
-
* |
|
|
276
|
-
* |
|
|
277
|
-
* |
|
|
278
|
-
* |
|
|
279
|
-
* |
|
|
280
|
-
* |
|
|
281
|
-
* |
|
|
282
|
-
* |
|
|
283
|
-
* |
|
|
185
|
+
* | Country | Type | Description |
|
|
186
|
+
* | ---------------------- | ------------ | ------------------------------------------------------------------------------------------------------- |
|
|
187
|
+
* | Albania | `al_tin` | Albania Tax Identification Number |
|
|
188
|
+
* | Andorra | `ad_nrt` | Andorran NRT Number |
|
|
189
|
+
* | Angola | `ao_tin` | Angola Tax Identification Number |
|
|
190
|
+
* | Argentina | `ar_cuit` | Argentinian Tax ID Number |
|
|
191
|
+
* | Armenia | `am_tin` | Armenia Tax Identification Number |
|
|
192
|
+
* | Aruba | `aw_tin` | Aruba Tax Identification Number |
|
|
193
|
+
* | Australia | `au_abn` | Australian Business Number (AU ABN) |
|
|
194
|
+
* | Australia | `au_arn` | Australian Taxation Office Reference Number |
|
|
195
|
+
* | Austria | `eu_vat` | European VAT Number |
|
|
196
|
+
* | Azerbaijan | `az_tin` | Azerbaijan Tax Identification Number |
|
|
197
|
+
* | Bahamas | `bs_tin` | Bahamas Tax Identification Number |
|
|
198
|
+
* | Bahrain | `bh_vat` | Bahraini VAT Number |
|
|
199
|
+
* | Bangladesh | `bd_bin` | Bangladesh Business Identification Number |
|
|
200
|
+
* | Barbados | `bb_tin` | Barbados Tax Identification Number |
|
|
201
|
+
* | Belarus | `by_tin` | Belarus TIN Number |
|
|
202
|
+
* | Belgium | `eu_vat` | European VAT Number |
|
|
203
|
+
* | Benin | `bj_ifu` | Benin Tax Identification Number (Identifiant Fiscal Unique) |
|
|
204
|
+
* | Bolivia | `bo_tin` | Bolivian Tax ID |
|
|
205
|
+
* | Bosnia and Herzegovina | `ba_tin` | Bosnia and Herzegovina Tax Identification Number |
|
|
206
|
+
* | Brazil | `br_cnpj` | Brazilian CNPJ Number |
|
|
207
|
+
* | Brazil | `br_cpf` | Brazilian CPF Number |
|
|
208
|
+
* | Bulgaria | `bg_uic` | Bulgaria Unified Identification Code |
|
|
209
|
+
* | Bulgaria | `eu_vat` | European VAT Number |
|
|
210
|
+
* | Burkina Faso | `bf_ifu` | Burkina Faso Tax Identification Number (Numéro d'Identifiant Fiscal Unique) |
|
|
211
|
+
* | Cambodia | `kh_tin` | Cambodia Tax Identification Number |
|
|
212
|
+
* | Cameroon | `cm_niu` | Cameroon Tax Identification Number (Numéro d'Identifiant fiscal Unique) |
|
|
213
|
+
* | Canada | `ca_bn` | Canadian BN |
|
|
214
|
+
* | Canada | `ca_gst_hst` | Canadian GST/HST Number |
|
|
215
|
+
* | Canada | `ca_pst_bc` | Canadian PST Number (British Columbia) |
|
|
216
|
+
* | Canada | `ca_pst_mb` | Canadian PST Number (Manitoba) |
|
|
217
|
+
* | Canada | `ca_pst_sk` | Canadian PST Number (Saskatchewan) |
|
|
218
|
+
* | Canada | `ca_qst` | Canadian QST Number (Québec) |
|
|
219
|
+
* | Cape Verde | `cv_nif` | Cape Verde Tax Identification Number (Número de Identificação Fiscal) |
|
|
220
|
+
* | Chile | `cl_tin` | Chilean TIN |
|
|
221
|
+
* | China | `cn_tin` | Chinese Tax ID |
|
|
222
|
+
* | Colombia | `co_nit` | Colombian NIT Number |
|
|
223
|
+
* | Congo-Kinshasa | `cd_nif` | Congo (DR) Tax Identification Number (Número de Identificação Fiscal) |
|
|
224
|
+
* | Costa Rica | `cr_tin` | Costa Rican Tax ID |
|
|
225
|
+
* | Croatia | `eu_vat` | European VAT Number |
|
|
226
|
+
* | Croatia | `hr_oib` | Croatian Personal Identification Number (OIB) |
|
|
227
|
+
* | Cyprus | `eu_vat` | European VAT Number |
|
|
228
|
+
* | Czech Republic | `eu_vat` | European VAT Number |
|
|
229
|
+
* | Denmark | `eu_vat` | European VAT Number |
|
|
230
|
+
* | Dominican Republic | `do_rcn` | Dominican RCN Number |
|
|
231
|
+
* | Ecuador | `ec_ruc` | Ecuadorian RUC Number |
|
|
232
|
+
* | Egypt | `eg_tin` | Egyptian Tax Identification Number |
|
|
233
|
+
* | El Salvador | `sv_nit` | El Salvadorian NIT Number |
|
|
234
|
+
* | Estonia | `eu_vat` | European VAT Number |
|
|
235
|
+
* | Ethiopia | `et_tin` | Ethiopia Tax Identification Number |
|
|
236
|
+
* | European Union | `eu_oss_vat` | European One Stop Shop VAT Number for non-Union scheme |
|
|
237
|
+
* | Finland | `eu_vat` | European VAT Number |
|
|
238
|
+
* | France | `eu_vat` | European VAT Number |
|
|
239
|
+
* | Georgia | `ge_vat` | Georgian VAT |
|
|
240
|
+
* | Germany | `de_stn` | German Tax Number (Steuernummer) |
|
|
241
|
+
* | Germany | `eu_vat` | European VAT Number |
|
|
242
|
+
* | Greece | `eu_vat` | European VAT Number |
|
|
243
|
+
* | Guinea | `gn_nif` | Guinea Tax Identification Number (Número de Identificação Fiscal) |
|
|
244
|
+
* | Hong Kong | `hk_br` | Hong Kong BR Number |
|
|
245
|
+
* | Hungary | `eu_vat` | European VAT Number |
|
|
246
|
+
* | Hungary | `hu_tin` | Hungary Tax Number (adószám) |
|
|
247
|
+
* | Iceland | `is_vat` | Icelandic VAT |
|
|
248
|
+
* | India | `in_gst` | Indian GST Number |
|
|
249
|
+
* | Indonesia | `id_npwp` | Indonesian NPWP Number |
|
|
250
|
+
* | Ireland | `eu_vat` | European VAT Number |
|
|
251
|
+
* | Israel | `il_vat` | Israel VAT |
|
|
252
|
+
* | Italy | `eu_vat` | European VAT Number |
|
|
253
|
+
* | Japan | `jp_cn` | Japanese Corporate Number (_Hōjin Bangō_) |
|
|
254
|
+
* | Japan | `jp_rn` | Japanese Registered Foreign Businesses' Registration Number (_Tōroku Kokugai Jigyōsha no Tōroku Bangō_) |
|
|
255
|
+
* | Japan | `jp_trn` | Japanese Tax Registration Number (_Tōroku Bangō_) |
|
|
256
|
+
* | Kazakhstan | `kz_bin` | Kazakhstani Business Identification Number |
|
|
257
|
+
* | Kenya | `ke_pin` | Kenya Revenue Authority Personal Identification Number |
|
|
258
|
+
* | Kyrgyzstan | `kg_tin` | Kyrgyzstan Tax Identification Number |
|
|
259
|
+
* | Laos | `la_tin` | Laos Tax Identification Number |
|
|
260
|
+
* | Latvia | `eu_vat` | European VAT Number |
|
|
261
|
+
* | Liechtenstein | `li_uid` | Liechtensteinian UID Number |
|
|
262
|
+
* | Liechtenstein | `li_vat` | Liechtenstein VAT Number |
|
|
263
|
+
* | Lithuania | `eu_vat` | European VAT Number |
|
|
264
|
+
* | Luxembourg | `eu_vat` | European VAT Number |
|
|
265
|
+
* | Malaysia | `my_frp` | Malaysian FRP Number |
|
|
266
|
+
* | Malaysia | `my_itn` | Malaysian ITN |
|
|
267
|
+
* | Malaysia | `my_sst` | Malaysian SST Number |
|
|
268
|
+
* | Malta | `eu_vat` | European VAT Number |
|
|
269
|
+
* | Mauritania | `mr_nif` | Mauritania Tax Identification Number (Número de Identificação Fiscal) |
|
|
270
|
+
* | Mexico | `mx_rfc` | Mexican RFC Number |
|
|
271
|
+
* | Moldova | `md_vat` | Moldova VAT Number |
|
|
272
|
+
* | Montenegro | `me_pib` | Montenegro PIB Number |
|
|
273
|
+
* | Morocco | `ma_vat` | Morocco VAT Number |
|
|
274
|
+
* | Nepal | `np_pan` | Nepal PAN Number |
|
|
275
|
+
* | Netherlands | `eu_vat` | European VAT Number |
|
|
276
|
+
* | New Zealand | `nz_gst` | New Zealand GST Number |
|
|
277
|
+
* | Nigeria | `ng_tin` | Nigerian Tax Identification Number |
|
|
278
|
+
* | North Macedonia | `mk_vat` | North Macedonia VAT Number |
|
|
279
|
+
* | Northern Ireland | `eu_vat` | Northern Ireland VAT Number |
|
|
280
|
+
* | Norway | `no_vat` | Norwegian VAT Number |
|
|
281
|
+
* | Norway | `no_voec` | Norwegian VAT on e-commerce Number |
|
|
282
|
+
* | Oman | `om_vat` | Omani VAT Number |
|
|
283
|
+
* | Peru | `pe_ruc` | Peruvian RUC Number |
|
|
284
|
+
* | Philippines | `ph_tin` | Philippines Tax Identification Number |
|
|
285
|
+
* | Poland | `eu_vat` | European VAT Number |
|
|
286
|
+
* | Portugal | `eu_vat` | European VAT Number |
|
|
287
|
+
* | Romania | `eu_vat` | European VAT Number |
|
|
288
|
+
* | Romania | `ro_tin` | Romanian Tax ID Number |
|
|
289
|
+
* | Russia | `ru_inn` | Russian INN |
|
|
290
|
+
* | Russia | `ru_kpp` | Russian KPP |
|
|
291
|
+
* | Saudi Arabia | `sa_vat` | Saudi Arabia VAT |
|
|
292
|
+
* | Senegal | `sn_ninea` | Senegal NINEA Number |
|
|
293
|
+
* | Serbia | `rs_pib` | Serbian PIB Number |
|
|
294
|
+
* | Singapore | `sg_gst` | Singaporean GST |
|
|
295
|
+
* | Singapore | `sg_uen` | Singaporean UEN |
|
|
296
|
+
* | Slovakia | `eu_vat` | European VAT Number |
|
|
297
|
+
* | Slovenia | `eu_vat` | European VAT Number |
|
|
298
|
+
* | Slovenia | `si_tin` | Slovenia Tax Number (davčna številka) |
|
|
299
|
+
* | South Africa | `za_vat` | South African VAT Number |
|
|
300
|
+
* | South Korea | `kr_brn` | Korean BRN |
|
|
301
|
+
* | Spain | `es_cif` | Spanish NIF Number (previously Spanish CIF Number) |
|
|
302
|
+
* | Spain | `eu_vat` | European VAT Number |
|
|
303
|
+
* | Suriname | `sr_fin` | Suriname FIN Number |
|
|
304
|
+
* | Sweden | `eu_vat` | European VAT Number |
|
|
305
|
+
* | Switzerland | `ch_uid` | Switzerland UID Number |
|
|
306
|
+
* | Switzerland | `ch_vat` | Switzerland VAT Number |
|
|
307
|
+
* | Taiwan | `tw_vat` | Taiwanese VAT |
|
|
308
|
+
* | Tajikistan | `tj_tin` | Tajikistan Tax Identification Number |
|
|
309
|
+
* | Tanzania | `tz_vat` | Tanzania VAT Number |
|
|
310
|
+
* | Thailand | `th_vat` | Thai VAT |
|
|
311
|
+
* | Turkey | `tr_tin` | Turkish Tax Identification Number |
|
|
312
|
+
* | Uganda | `ug_tin` | Uganda Tax Identification Number |
|
|
313
|
+
* | Ukraine | `ua_vat` | Ukrainian VAT |
|
|
314
|
+
* | United Arab Emirates | `ae_trn` | United Arab Emirates TRN |
|
|
315
|
+
* | United Kingdom | `gb_vat` | United Kingdom VAT Number |
|
|
316
|
+
* | United States | `us_ein` | United States EIN |
|
|
317
|
+
* | Uruguay | `uy_ruc` | Uruguayan RUC Number |
|
|
318
|
+
* | Uzbekistan | `uz_tin` | Uzbekistan TIN Number |
|
|
319
|
+
* | Uzbekistan | `uz_vat` | Uzbekistan VAT Number |
|
|
320
|
+
* | Venezuela | `ve_rif` | Venezuelan RIF Number |
|
|
321
|
+
* | Vietnam | `vn_tin` | Vietnamese Tax ID Number |
|
|
322
|
+
* | Zambia | `zm_tin` | Zambia Tax Identification Number |
|
|
323
|
+
* | Zimbabwe | `zw_tin` | Zimbabwe Tax Identification Number |
|
|
284
324
|
*/
|
|
285
325
|
customer_tax_id: Shared.CustomerTaxID | null;
|
|
286
326
|
|