Skip to content

Commit e9f601d

Browse files
stainless-app[bot]DannyNemer
authored andcommitted
feat(api): api update
1 parent 31c6598 commit e9f601d

File tree

97 files changed

+478
-478
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+478
-478
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: 206
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-a58ee0dd5407d2ff12088e9b2f6428e308391d28a4dc15484f3c23c8ba293148.yml
3-
openapi_spec_hash: 4cf23f4388ce19edc5cbaa2dc1334408
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-c3a34e96ae0242e0f42c5f5d0258d9cff09aa313626e422750440f02ae9a4f91.yml
3+
openapi_spec_hash: 89906fff410dc4cabe32d1074b1f22f2
44
config_hash: d3a7c0347d6d2aa9f9e50b8be3774da4

src/conductor/types/qbd/account.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,8 @@ class Account(BaseModel):
181181
created_at: str = FieldInfo(alias="createdAt")
182182
"""
183183
The date and time when this account was created, in ISO 8601 format
184-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
185-
in QuickBooks.
184+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
185+
timezone.
186186
"""
187187

188188
currency: Optional[Currency] = None
@@ -317,6 +317,6 @@ class Account(BaseModel):
317317
updated_at: str = FieldInfo(alias="updatedAt")
318318
"""
319319
The date and time when this account was last updated, in ISO 8601 format
320-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
321-
in QuickBooks.
320+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
321+
timezone.
322322
"""

src/conductor/types/qbd/bill.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1236,8 +1236,8 @@ class Bill(BaseModel):
12361236
created_at: str = FieldInfo(alias="createdAt")
12371237
"""
12381238
The date and time when this bill was created, in ISO 8601 format
1239-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
1240-
in QuickBooks.
1239+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
1240+
timezone.
12411241
"""
12421242

12431243
currency: Optional[Currency] = None
@@ -1369,8 +1369,8 @@ class Bill(BaseModel):
13691369
updated_at: str = FieldInfo(alias="updatedAt")
13701370
"""
13711371
The date and time when this bill was last updated, in ISO 8601 format
1372-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
1373-
in QuickBooks.
1372+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
1373+
timezone.
13741374
"""
13751375

13761376
vendor: Vendor

src/conductor/types/qbd/bill_check_payment.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,8 @@ class BillCheckPayment(BaseModel):
374374
created_at: str = FieldInfo(alias="createdAt")
375375
"""
376376
The date and time when this bill check payment was created, in ISO 8601 format
377-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
378-
in QuickBooks.
377+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
378+
timezone.
379379
"""
380380

381381
currency: Optional[Currency] = None
@@ -450,8 +450,8 @@ class BillCheckPayment(BaseModel):
450450
updated_at: str = FieldInfo(alias="updatedAt")
451451
"""
452452
The date and time when this bill check payment was last updated, in ISO 8601
453-
format (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time
454-
zone in QuickBooks.
453+
format (YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s
454+
local timezone.
455455
"""
456456

457457
vendor: Optional[Vendor] = None

src/conductor/types/qbd/bill_credit_card_payment.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ class BillCreditCardPayment(BaseModel):
326326
created_at: str = FieldInfo(alias="createdAt")
327327
"""
328328
The date and time when this bill credit card payment was created, in ISO 8601
329-
format (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time
330-
zone in QuickBooks.
329+
format (YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s
330+
local timezone.
331331
"""
332332

333333
credit_card_account: CreditCardAccount = FieldInfo(alias="creditCardAccount")
@@ -403,8 +403,8 @@ class BillCreditCardPayment(BaseModel):
403403
updated_at: str = FieldInfo(alias="updatedAt")
404404
"""
405405
The date and time when this bill credit card payment was last updated, in ISO
406-
8601 format (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's
407-
time zone in QuickBooks.
406+
8601 format (YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host
407+
machine’s local timezone.
408408
"""
409409

410410
vendor: Optional[Vendor] = None

src/conductor/types/qbd/build_assembly.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ class BuildAssembly(BaseModel):
222222
created_at: str = FieldInfo(alias="createdAt")
223223
"""
224224
The date and time when this build assembly was created, in ISO 8601 format
225-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
226-
in QuickBooks.
225+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
226+
timezone.
227227
"""
228228

229229
custom_fields: List[CustomField] = FieldInfo(alias="customFields")
@@ -332,6 +332,6 @@ class BuildAssembly(BaseModel):
332332
updated_at: str = FieldInfo(alias="updatedAt")
333333
"""
334334
The date and time when this build assembly was last updated, in ISO 8601 format
335-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
336-
in QuickBooks.
335+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
336+
timezone.
337337
"""

src/conductor/types/qbd/check.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,8 +1228,8 @@ class Check(BaseModel):
12281228
created_at: str = FieldInfo(alias="createdAt")
12291229
"""
12301230
The date and time when this check was created, in ISO 8601 format
1231-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
1232-
in QuickBooks.
1231+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
1232+
timezone.
12331233
"""
12341234

12351235
currency: Optional[Currency] = None
@@ -1338,6 +1338,6 @@ class Check(BaseModel):
13381338
updated_at: str = FieldInfo(alias="updatedAt")
13391339
"""
13401340
The date and time when this check was last updated, in ISO 8601 format
1341-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
1342-
in QuickBooks.
1341+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
1342+
timezone.
13431343
"""

src/conductor/types/qbd/class_.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ class Class(BaseModel):
3737
created_at: str = FieldInfo(alias="createdAt")
3838
"""
3939
The date and time when this class was created, in ISO 8601 format
40-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
41-
in QuickBooks.
40+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
41+
timezone.
4242
"""
4343

4444
full_name: str = FieldInfo(alias="fullName")
@@ -99,6 +99,6 @@ class Class(BaseModel):
9999
updated_at: str = FieldInfo(alias="updatedAt")
100100
"""
101101
The date and time when this class was last updated, in ISO 8601 format
102-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
103-
in QuickBooks.
102+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
103+
timezone.
104104
"""

src/conductor/types/qbd/credit_card_charge.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,8 +1120,8 @@ class CreditCardCharge(BaseModel):
11201120
created_at: str = FieldInfo(alias="createdAt")
11211121
"""
11221122
The date and time when this credit card charge was created, in ISO 8601 format
1123-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
1124-
in QuickBooks.
1123+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
1124+
timezone.
11251125
"""
11261126

11271127
currency: Optional[Currency] = None
@@ -1215,6 +1215,6 @@ class CreditCardCharge(BaseModel):
12151215
updated_at: str = FieldInfo(alias="updatedAt")
12161216
"""
12171217
The date and time when this credit card charge was last updated, in ISO 8601
1218-
format (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time
1219-
zone in QuickBooks.
1218+
format (YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s
1219+
local timezone.
12201220
"""

src/conductor/types/qbd/credit_card_credit.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1117,8 +1117,8 @@ class CreditCardCredit(BaseModel):
11171117
created_at: str = FieldInfo(alias="createdAt")
11181118
"""
11191119
The date and time when this credit card credit was created, in ISO 8601 format
1120-
(YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time zone
1121-
in QuickBooks.
1120+
(YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s local
1121+
timezone.
11221122
"""
11231123

11241124
currency: Optional[Currency] = None
@@ -1212,6 +1212,6 @@ class CreditCardCredit(BaseModel):
12121212
updated_at: str = FieldInfo(alias="updatedAt")
12131213
"""
12141214
The date and time when this credit card credit was last updated, in ISO 8601
1215-
format (YYYY-MM-DDThh:mm:ss±hh:mm). The time zone is the same as the user's time
1216-
zone in QuickBooks.
1215+
format (YYYY-MM-DDThh:mm:ss±hh:mm), in the QuickBooks Desktop host machine’s
1216+
local timezone.
12171217
"""

0 commit comments

Comments
 (0)