airbyte-source-hardcoded-records 0.0.19__tar.gz → 0.0.21__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-source-hardcoded-records
3
- Version: 0.0.19
3
+ Version: 0.0.21
4
4
  Summary: Source implementation for hardcoded recprds.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -5,7 +5,7 @@ requires = [
5
5
  build-backend = "poetry.core.masonry.api"
6
6
 
7
7
  [tool.poetry]
8
- version = "0.0.19"
8
+ version = "0.0.21"
9
9
  name = "airbyte-source-hardcoded-records"
10
10
  description = "Source implementation for hardcoded recprds."
11
11
  authors = [
@@ -9,6 +9,7 @@ from airbyte_cdk.sources.streams import Stream
9
9
 
10
10
  from .streams import Customers, DummyFields, Products
11
11
 
12
+
12
13
  DEFAULT_COUNT = 1_000
13
14
 
14
15