Skip to content

Commit 013f152

Browse files
committed
Bump to new release
* Update to match Manager v26.2.20.3187
1 parent 42a3c87 commit 013f152

File tree

3 files changed

+485
-209
lines changed

3 files changed

+485
-209
lines changed

manager_api/enums.py

Lines changed: 78 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
11
# -*- coding: utf-8 -*-
2-
# Do not edit. Automatically generated from Manager v23.12.9.1219.
2+
# Do not edit. Automatically generated from Manager v26.2.20.3187.
33

44
from typing import Literal
55

66

7+
NumberOperator = Literal[
8+
"IsLessThan",
9+
"IsMoreThan",
10+
"IsNotZero",
11+
"IsZero",
12+
]
13+
14+
EnumOperator = Literal[
15+
"Is",
16+
"IsNot",
17+
]
18+
719
StringOperator = Literal[
820
"Contains",
921
"DoesNotContain",
@@ -18,15 +30,19 @@
1830
"IsZero",
1931
]
2032

33+
DateOperator = Literal[
34+
"IsExactly",
35+
"IsAfter",
36+
"IsOnOrAfter",
37+
"IsBefore",
38+
"IsBeforeOrOn",
39+
]
40+
2141
BooleanOperator = Literal[
2242
"IsChecked",
2343
"IsNotChecked",
2444
]
2545

26-
DateOperator = Literal[
27-
"IsBetween",
28-
]
29-
3046
ObjectOperator = Literal[
3147
"Is",
3248
"IsNot",
@@ -84,11 +100,6 @@
84100
"LessThan",
85101
]
86102

87-
AutomaticManual = Literal[
88-
"Automatic",
89-
"Manual",
90-
]
91-
92103
BalanceSheetLayout = Literal[
93104
"AssetsLiabilitiesEqualsEquity",
94105
"AssetsEqualsLiabilitiesEquity",
@@ -281,23 +292,60 @@
281292
"Custom",
282293
]
283294

295+
ExtensionSource = Literal[
296+
"Url",
297+
"Inline",
298+
]
299+
284300
FirstDayOfWeek = Literal[
285301
"Monday",
286302
"Sunday",
287303
"Saturday",
288304
]
289305

306+
FixedAssetStartingBalanceType = Literal[
307+
"AcquisitionCost",
308+
"AccumulatedDepreciation",
309+
]
310+
311+
IntangibleAssetStartingBalanceType = Literal[
312+
"AcquisitionCost",
313+
"AccumulatedAmortization",
314+
]
315+
316+
InventoryItemStartingBalanceType = Literal[
317+
"QtyOnHand",
318+
"QtyToDeliver",
319+
"QtyToReceive",
320+
]
321+
290322
InventoryLocationType = Literal[
291323
"InventoryOnHand",
292324
"Customer",
293325
"Supplier",
294326
]
295327

328+
InventoryValuationMethod = Literal[
329+
"FirstInFirstOut",
330+
"WeightedAverageCost",
331+
"Manual",
332+
]
333+
334+
InventoryValuationMethodWithoutManual = Literal[
335+
"FirstInFirstOut",
336+
"WeightedAverageCost",
337+
]
338+
296339
LatePaymentFeesType = Literal[
297340
"DoNotCharge",
298341
"ChargeMonthly",
299342
]
300343

344+
MonthDay = Literal[
345+
"OnTheSameDay",
346+
"OnTheLastDay",
347+
]
348+
301349
PageSize = Literal[
302350
"A4",
303351
"Letter",
@@ -321,6 +369,11 @@
321369
"SubgroupOf",
322370
]
323371

372+
Protocol = Literal[
373+
"HTTP",
374+
"SMTP",
375+
]
376+
324377
Repeat = Literal[
325378
"Never",
326379
"EveryDay",
@@ -371,6 +424,20 @@
371424
"Descending",
372425
]
373426

427+
StartingBalanceAccount = Literal[
428+
"BankOrCashAccount",
429+
"Customer",
430+
"Supplier",
431+
"Employee",
432+
"InventoryItem",
433+
"Investment",
434+
"FixedAsset",
435+
"IntangibleAsset",
436+
"CapitalAccount",
437+
"SpecialAccount",
438+
"Other",
439+
]
440+
374441
StartingBalanceType = Literal[
375442
"PaidInAdvance",
376443
"AmountToPay",
@@ -396,6 +463,7 @@
396463
"SingleLineText",
397464
"ParagraphText",
398465
"DropdownList",
466+
"QrCode",
399467
]
400468

401469
UserPermissionsAccessType = Literal[

0 commit comments

Comments
 (0)