xync-schema 0.6.73.dev9__py3-none-any.whl → 0.6.73.dev11__py3-none-any.whl
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.
- xync_schema/models.py +2 -2
- {xync_schema-0.6.73.dev9.dist-info → xync_schema-0.6.73.dev11.dist-info}/METADATA +1 -1
- xync_schema-0.6.73.dev11.dist-info/RECORD +8 -0
- {xync_schema-0.6.73.dev9.dist-info → xync_schema-0.6.73.dev11.dist-info}/WHEEL +1 -1
- xync_schema-0.6.73.dev9.dist-info/RECORD +0 -8
- {xync_schema-0.6.73.dev9.dist-info → xync_schema-0.6.73.dev11.dist-info}/top_level.txt +0 -0
xync_schema/models.py
CHANGED
|
@@ -351,14 +351,14 @@ class Ad(Model, TsTrait):
|
|
|
351
351
|
class Pm(Model):
|
|
352
352
|
# name: str = fields.CharField(63) # mv to pmex cause it diffs on each ex
|
|
353
353
|
norm: str | None = fields.CharField(63)
|
|
354
|
-
acronym: str | None = fields.CharField(7,
|
|
354
|
+
acronym: str | None = fields.CharField(7, null=True)
|
|
355
355
|
country: fields.ForeignKeyRelation[Country] = fields.ForeignKeyField("models.Country", "pms", null=True)
|
|
356
356
|
alias: str | None = fields.CharField(63, null=True)
|
|
357
357
|
extra: str | None = fields.CharField(63, null=True)
|
|
358
358
|
ok: bool = fields.BooleanField(default=True)
|
|
359
359
|
bank: bool = fields.BooleanField(null=True)
|
|
360
360
|
|
|
361
|
-
|
|
361
|
+
typ: PmType | None = fields.IntEnumField(PmType, null=True)
|
|
362
362
|
logo: str | None = fields.CharField(119, null=True)
|
|
363
363
|
|
|
364
364
|
ads: fields.ManyToManyRelation[Ad]
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
xync_schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
xync_schema/enums.py,sha256=wK74m_xD27XbbXx4adIidyxswE3fqnH7YkaVwtCxSjA,12460
|
|
3
|
+
xync_schema/models.py,sha256=Q_PNe8OQ4q52ttB9QALZw_V1j3BNr-JPcpV3M5hmvmk,27004
|
|
4
|
+
xync_schema/types.py,sha256=e55yfU8Z5iXgUFa50ZqNhIgM9mxmPsWK0vshB_mZoU0,2673
|
|
5
|
+
xync_schema-0.6.73.dev11.dist-info/METADATA,sha256=7Cfj8rx8uVs71nS5YN0j9Caq6KKhQEXY7t4qe-VsLmo,3991
|
|
6
|
+
xync_schema-0.6.73.dev11.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
|
|
7
|
+
xync_schema-0.6.73.dev11.dist-info/top_level.txt,sha256=jN8IBDfVY8b85Byyk8v0Gyj_0yLB8FO56WV4EvcXWY4,12
|
|
8
|
+
xync_schema-0.6.73.dev11.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
xync_schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
xync_schema/enums.py,sha256=wK74m_xD27XbbXx4adIidyxswE3fqnH7YkaVwtCxSjA,12460
|
|
3
|
-
xync_schema/models.py,sha256=GQ9zBAHfWszmRjNXWJgNVX4MwaQBxUoT3WxO5G9rdPU,27019
|
|
4
|
-
xync_schema/types.py,sha256=e55yfU8Z5iXgUFa50ZqNhIgM9mxmPsWK0vshB_mZoU0,2673
|
|
5
|
-
xync_schema-0.6.73.dev9.dist-info/METADATA,sha256=-2zLdxPcx__pymCK0RZP6edjol2LScL2mWZBkWJC7CM,3990
|
|
6
|
-
xync_schema-0.6.73.dev9.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
7
|
-
xync_schema-0.6.73.dev9.dist-info/top_level.txt,sha256=jN8IBDfVY8b85Byyk8v0Gyj_0yLB8FO56WV4EvcXWY4,12
|
|
8
|
-
xync_schema-0.6.73.dev9.dist-info/RECORD,,
|
|
File without changes
|