Skip to content

Commit 6755e2a

Browse files
feat(api): api update
1 parent 59f9b8f commit 6755e2a

12 files changed

+20
-2
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 126
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-6017828d1287c194d4d7759dc5b5410225ab58af66ff8605315f70f5e623b82d.yml
3-
openapi_spec_hash: 4390eaf377258fcd7db1dbc073a2c23f
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-9f1a41612765cb08d100b2c9e85080e93306e8d0942d535f16052c3eb18d9b8b.yml
3+
openapi_spec_hash: 6dd28f36adc7e7d6a9245585eaf9b9c1
44
config_hash: bcf82bddb691f6be773ac6cae8c03b9a

src/orb/resources/customers/customers.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ def create(
283283
| Peru | `pe_ruc` | Peruvian RUC Number |
284284
| Philippines | `ph_tin` | Philippines Tax Identification Number |
285285
| Poland | `eu_vat` | European VAT Number |
286+
| Poland | `pl_nip` | Polish Tax ID Number |
286287
| Portugal | `eu_vat` | European VAT Number |
287288
| Romania | `eu_vat` | European VAT Number |
288289
| Romania | `ro_tin` | Romanian Tax ID Number |
@@ -565,6 +566,7 @@ def update(
565566
| Peru | `pe_ruc` | Peruvian RUC Number |
566567
| Philippines | `ph_tin` | Philippines Tax Identification Number |
567568
| Poland | `eu_vat` | European VAT Number |
569+
| Poland | `pl_nip` | Polish Tax ID Number |
568570
| Portugal | `eu_vat` | European VAT Number |
569571
| Romania | `eu_vat` | European VAT Number |
570572
| Romania | `ro_tin` | Romanian Tax ID Number |
@@ -1129,6 +1131,7 @@ def update_by_external_id(
11291131
| Peru | `pe_ruc` | Peruvian RUC Number |
11301132
| Philippines | `ph_tin` | Philippines Tax Identification Number |
11311133
| Poland | `eu_vat` | European VAT Number |
1134+
| Poland | `pl_nip` | Polish Tax ID Number |
11321135
| Portugal | `eu_vat` | European VAT Number |
11331136
| Romania | `eu_vat` | European VAT Number |
11341137
| Romania | `ro_tin` | Romanian Tax ID Number |
@@ -1444,6 +1447,7 @@ async def create(
14441447
| Peru | `pe_ruc` | Peruvian RUC Number |
14451448
| Philippines | `ph_tin` | Philippines Tax Identification Number |
14461449
| Poland | `eu_vat` | European VAT Number |
1450+
| Poland | `pl_nip` | Polish Tax ID Number |
14471451
| Portugal | `eu_vat` | European VAT Number |
14481452
| Romania | `eu_vat` | European VAT Number |
14491453
| Romania | `ro_tin` | Romanian Tax ID Number |
@@ -1726,6 +1730,7 @@ async def update(
17261730
| Peru | `pe_ruc` | Peruvian RUC Number |
17271731
| Philippines | `ph_tin` | Philippines Tax Identification Number |
17281732
| Poland | `eu_vat` | European VAT Number |
1733+
| Poland | `pl_nip` | Polish Tax ID Number |
17291734
| Portugal | `eu_vat` | European VAT Number |
17301735
| Romania | `eu_vat` | European VAT Number |
17311736
| Romania | `ro_tin` | Romanian Tax ID Number |
@@ -2290,6 +2295,7 @@ async def update_by_external_id(
22902295
| Peru | `pe_ruc` | Peruvian RUC Number |
22912296
| Philippines | `ph_tin` | Philippines Tax Identification Number |
22922297
| Poland | `eu_vat` | European VAT Number |
2298+
| Poland | `pl_nip` | Polish Tax ID Number |
22932299
| Portugal | `eu_vat` | European VAT Number |
22942300
| Romania | `eu_vat` | European VAT Number |
22952301
| Romania | `ro_tin` | Romanian Tax ID Number |

src/orb/types/customer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,7 @@ class Customer(BaseModel):
264264
| Peru | `pe_ruc` | Peruvian RUC Number |
265265
| Philippines | `ph_tin` | Philippines Tax Identification Number |
266266
| Poland | `eu_vat` | European VAT Number |
267+
| Poland | `pl_nip` | Polish Tax ID Number |
267268
| Portugal | `eu_vat` | European VAT Number |
268269
| Romania | `eu_vat` | European VAT Number |
269270
| Romania | `ro_tin` | Romanian Tax ID Number |

src/orb/types/customer_create_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ class CustomerCreateParams(TypedDict, total=False):
222222
| Peru | `pe_ruc` | Peruvian RUC Number |
223223
| Philippines | `ph_tin` | Philippines Tax Identification Number |
224224
| Poland | `eu_vat` | European VAT Number |
225+
| Poland | `pl_nip` | Polish Tax ID Number |
225226
| Portugal | `eu_vat` | European VAT Number |
226227
| Romania | `eu_vat` | European VAT Number |
227228
| Romania | `ro_tin` | Romanian Tax ID Number |

src/orb/types/customer_update_by_external_id_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ class CustomerUpdateByExternalIDParams(TypedDict, total=False):
224224
| Peru | `pe_ruc` | Peruvian RUC Number |
225225
| Philippines | `ph_tin` | Philippines Tax Identification Number |
226226
| Poland | `eu_vat` | European VAT Number |
227+
| Poland | `pl_nip` | Polish Tax ID Number |
227228
| Portugal | `eu_vat` | European VAT Number |
228229
| Romania | `eu_vat` | European VAT Number |
229230
| Romania | `ro_tin` | Romanian Tax ID Number |

src/orb/types/customer_update_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ class CustomerUpdateParams(TypedDict, total=False):
224224
| Peru | `pe_ruc` | Peruvian RUC Number |
225225
| Philippines | `ph_tin` | Philippines Tax Identification Number |
226226
| Poland | `eu_vat` | European VAT Number |
227+
| Poland | `pl_nip` | Polish Tax ID Number |
227228
| Portugal | `eu_vat` | European VAT Number |
228229
| Romania | `eu_vat` | European VAT Number |
229230
| Romania | `ro_tin` | Romanian Tax ID Number |

src/orb/types/invoice_fetch_upcoming_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,7 @@ class InvoiceFetchUpcomingResponse(BaseModel):
391391
| Peru | `pe_ruc` | Peruvian RUC Number |
392392
| Philippines | `ph_tin` | Philippines Tax Identification Number |
393393
| Poland | `eu_vat` | European VAT Number |
394+
| Poland | `pl_nip` | Polish Tax ID Number |
394395
| Portugal | `eu_vat` | European VAT Number |
395396
| Romania | `eu_vat` | European VAT Number |
396397
| Romania | `ro_tin` | Romanian Tax ID Number |

src/orb/types/invoice_list_summary_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ class InvoiceListSummaryResponse(BaseModel):
268268
| Peru | `pe_ruc` | Peruvian RUC Number |
269269
| Philippines | `ph_tin` | Philippines Tax Identification Number |
270270
| Poland | `eu_vat` | European VAT Number |
271+
| Poland | `pl_nip` | Polish Tax ID Number |
271272
| Portugal | `eu_vat` | European VAT Number |
272273
| Romania | `eu_vat` | European VAT Number |
273274
| Romania | `ro_tin` | Romanian Tax ID Number |

src/orb/types/shared/changed_subscription_resources.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,7 @@ class CreatedInvoice(BaseModel):
394394
| Peru | `pe_ruc` | Peruvian RUC Number |
395395
| Philippines | `ph_tin` | Philippines Tax Identification Number |
396396
| Poland | `eu_vat` | European VAT Number |
397+
| Poland | `pl_nip` | Polish Tax ID Number |
397398
| Portugal | `eu_vat` | European VAT Number |
398399
| Romania | `eu_vat` | European VAT Number |
399400
| Romania | `ro_tin` | Romanian Tax ID Number |

src/orb/types/shared/customer_tax_id.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ class CustomerTaxID(BaseModel):
116116
| Peru | `pe_ruc` | Peruvian RUC Number |
117117
| Philippines | `ph_tin` | Philippines Tax Identification Number |
118118
| Poland | `eu_vat` | European VAT Number |
119+
| Poland | `pl_nip` | Polish Tax ID Number |
119120
| Portugal | `eu_vat` | European VAT Number |
120121
| Romania | `eu_vat` | European VAT Number |
121122
| Romania | `ro_tin` | Romanian Tax ID Number |
@@ -355,6 +356,7 @@ class CustomerTaxID(BaseModel):
355356
"om_vat",
356357
"pe_ruc",
357358
"ph_tin",
359+
"pl_nip",
358360
"ro_tin",
359361
"rs_pib",
360362
"ru_inn",

0 commit comments

Comments
 (0)