|
1 | 1 | # -*- 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. |
3 | 3 |
|
4 | 4 | from typing import Literal |
5 | 5 |
|
6 | 6 |
|
| 7 | +NumberOperator = Literal[ |
| 8 | + "IsLessThan", |
| 9 | + "IsMoreThan", |
| 10 | + "IsNotZero", |
| 11 | + "IsZero", |
| 12 | +] |
| 13 | + |
| 14 | +EnumOperator = Literal[ |
| 15 | + "Is", |
| 16 | + "IsNot", |
| 17 | +] |
| 18 | + |
7 | 19 | StringOperator = Literal[ |
8 | 20 | "Contains", |
9 | 21 | "DoesNotContain", |
|
18 | 30 | "IsZero", |
19 | 31 | ] |
20 | 32 |
|
| 33 | +DateOperator = Literal[ |
| 34 | + "IsExactly", |
| 35 | + "IsAfter", |
| 36 | + "IsOnOrAfter", |
| 37 | + "IsBefore", |
| 38 | + "IsBeforeOrOn", |
| 39 | +] |
| 40 | + |
21 | 41 | BooleanOperator = Literal[ |
22 | 42 | "IsChecked", |
23 | 43 | "IsNotChecked", |
24 | 44 | ] |
25 | 45 |
|
26 | | -DateOperator = Literal[ |
27 | | - "IsBetween", |
28 | | -] |
29 | | - |
30 | 46 | ObjectOperator = Literal[ |
31 | 47 | "Is", |
32 | 48 | "IsNot", |
|
84 | 100 | "LessThan", |
85 | 101 | ] |
86 | 102 |
|
87 | | -AutomaticManual = Literal[ |
88 | | - "Automatic", |
89 | | - "Manual", |
90 | | -] |
91 | | - |
92 | 103 | BalanceSheetLayout = Literal[ |
93 | 104 | "AssetsLiabilitiesEqualsEquity", |
94 | 105 | "AssetsEqualsLiabilitiesEquity", |
|
281 | 292 | "Custom", |
282 | 293 | ] |
283 | 294 |
|
| 295 | +ExtensionSource = Literal[ |
| 296 | + "Url", |
| 297 | + "Inline", |
| 298 | +] |
| 299 | + |
284 | 300 | FirstDayOfWeek = Literal[ |
285 | 301 | "Monday", |
286 | 302 | "Sunday", |
287 | 303 | "Saturday", |
288 | 304 | ] |
289 | 305 |
|
| 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 | + |
290 | 322 | InventoryLocationType = Literal[ |
291 | 323 | "InventoryOnHand", |
292 | 324 | "Customer", |
293 | 325 | "Supplier", |
294 | 326 | ] |
295 | 327 |
|
| 328 | +InventoryValuationMethod = Literal[ |
| 329 | + "FirstInFirstOut", |
| 330 | + "WeightedAverageCost", |
| 331 | + "Manual", |
| 332 | +] |
| 333 | + |
| 334 | +InventoryValuationMethodWithoutManual = Literal[ |
| 335 | + "FirstInFirstOut", |
| 336 | + "WeightedAverageCost", |
| 337 | +] |
| 338 | + |
296 | 339 | LatePaymentFeesType = Literal[ |
297 | 340 | "DoNotCharge", |
298 | 341 | "ChargeMonthly", |
299 | 342 | ] |
300 | 343 |
|
| 344 | +MonthDay = Literal[ |
| 345 | + "OnTheSameDay", |
| 346 | + "OnTheLastDay", |
| 347 | +] |
| 348 | + |
301 | 349 | PageSize = Literal[ |
302 | 350 | "A4", |
303 | 351 | "Letter", |
|
321 | 369 | "SubgroupOf", |
322 | 370 | ] |
323 | 371 |
|
| 372 | +Protocol = Literal[ |
| 373 | + "HTTP", |
| 374 | + "SMTP", |
| 375 | +] |
| 376 | + |
324 | 377 | Repeat = Literal[ |
325 | 378 | "Never", |
326 | 379 | "EveryDay", |
|
371 | 424 | "Descending", |
372 | 425 | ] |
373 | 426 |
|
| 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 | + |
374 | 441 | StartingBalanceType = Literal[ |
375 | 442 | "PaidInAdvance", |
376 | 443 | "AmountToPay", |
|
396 | 463 | "SingleLineText", |
397 | 464 | "ParagraphText", |
398 | 465 | "DropdownList", |
| 466 | + "QrCode", |
399 | 467 | ] |
400 | 468 |
|
401 | 469 | UserPermissionsAccessType = Literal[ |
|
0 commit comments