ingestr 0.13.83__py3-none-any.whl → 0.13.84__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.

Potentially problematic release.


This version of ingestr might be problematic. Click here for more details.

ingestr/src/buildinfo.py CHANGED
@@ -1 +1 @@
1
- version = "v0.13.83"
1
+ version = "v0.13.84"
@@ -485,9 +485,32 @@ query Projects($cursor: String) {
485
485
  description
486
486
  createdAt
487
487
  updatedAt
488
+ archivedAt
489
+ completedAt
490
+ canceledAt
491
+ startedAt
492
+
493
+ color
494
+ icon
495
+ slugId
496
+ url
497
+
488
498
  health
489
499
  priority
500
+ priorityLabel
501
+ state
502
+
490
503
  targetDate
504
+ startDate
505
+
506
+ progress
507
+ currentProgress
508
+ scope
509
+
510
+ sortOrder
511
+ trashed
512
+
513
+ creator { id }
491
514
  lead { id }
492
515
  }
493
516
  pageInfo { hasNextPage endCursor }
@@ -495,6 +518,58 @@ query Projects($cursor: String) {
495
518
  }
496
519
  """
497
520
 
521
+ TEAMS_QUERY = """
522
+ query Teams($cursor: String) {
523
+ teams(first: 50, after: $cursor) {
524
+ nodes {
525
+ id
526
+ name
527
+ key
528
+ description
529
+ color
530
+ icon
531
+ private
532
+ archivedAt
533
+ createdAt
534
+ updatedAt
535
+
536
+ organization { id }
537
+ parent { id }
538
+
539
+ cyclesEnabled
540
+ cycleDuration
541
+ cycleStartDay
542
+ cycleCooldownTime
543
+
544
+ issueCount
545
+ issueEstimationType
546
+ issueEstimationAllowZero
547
+ issueEstimationExtended
548
+ issueOrderingNoPriorityFirst
549
+
550
+ autoArchivePeriod
551
+ autoClosePeriod
552
+ autoCloseChildIssues
553
+ autoCloseParentIssues
554
+
555
+ groupIssueHistory
556
+ timezone
557
+ inviteHash
558
+ joinByDefault
559
+
560
+ slackNewIssue
561
+ slackIssueComments
562
+ slackIssueStatuses
563
+
564
+ triageEnabled
565
+ requirePriorityToLeaveTriage
566
+ upcomingCycleCount
567
+ }
568
+ pageInfo { hasNextPage endCursor }
569
+ }
570
+ }
571
+ """
572
+
498
573
 
499
574
  # Paginated resources configuration
500
575
  PAGINATED_RESOURCES = [
@@ -515,6 +590,7 @@ PAGINATED_RESOURCES = [
515
590
  ("project_milestone", PROJECT_MILESTONES_QUERY, "projectMilestones"),
516
591
  ("project_status", PROJECT_STATUSES_QUERY, "projectStatuses"),
517
592
  ("projects", PROJECTS_QUERY, "projects"),
593
+ ("teams", TEAMS_QUERY, "teams"),
518
594
  ]
519
595
 
520
596
 
@@ -94,7 +94,7 @@ def async_stripe_source(
94
94
  )(endpoint)
95
95
 
96
96
 
97
- @dlt.source
97
+ @dlt.source(max_table_nesting=0)
98
98
  def incremental_stripe_source(
99
99
  endpoints: Tuple[str, ...],
100
100
  stripe_secret_key: str = dlt.secrets.value,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ingestr
3
- Version: 0.13.83
3
+ Version: 0.13.84
4
4
  Summary: ingestr is a command-line application that ingests data from various sources and stores them in any database.
5
5
  Project-URL: Homepage, https://github.com/bruin-data/ingestr
6
6
  Project-URL: Issues, https://github.com/bruin-data/ingestr/issues
@@ -83,7 +83,7 @@ Requires-Dist: google-cloud-storage==3.1.0
83
83
  Requires-Dist: google-crc32c==1.6.0
84
84
  Requires-Dist: google-resumable-media==2.7.2
85
85
  Requires-Dist: googleapis-common-protos==1.69.0
86
- Requires-Dist: greenlet==3.2.3
86
+ Requires-Dist: greenlet==3.2.4
87
87
  Requires-Dist: grpc-google-iam-v1==0.14.2
88
88
  Requires-Dist: grpc-interceptor==0.15.4
89
89
  Requires-Dist: grpcio-status==1.62.3
@@ -2,7 +2,7 @@ ingestr/conftest.py,sha256=OE2yxeTCosS9CUFVuqNypm-2ftYvVBeeq7egm3878cI,1981
2
2
  ingestr/main.py,sha256=qoWHNcHh0-xVnyQxbQ-SKuTxPb1RNV3ENkCpqO7CLrk,26694
3
3
  ingestr/src/.gitignore,sha256=8cX1AZTSI0TcdZFGTmS_oyBjpfCzhOEt0DdAo2dFIY8,203
4
4
  ingestr/src/blob.py,sha256=UUWMjHUuoR9xP1XZQ6UANQmnMVyDx3d0X4-2FQC271I,2138
5
- ingestr/src/buildinfo.py,sha256=MHjeovk0HwiWzmF0hXLo3Hw11MPw21fjYmBbB8wW8Fo,21
5
+ ingestr/src/buildinfo.py,sha256=WN5lOieDcoxVlYgBMBodzZWgJZUv46uGz-LyWD1-F_M,21
6
6
  ingestr/src/destinations.py,sha256=M2Yni6wiWcrvZ8EPJemidqxN156l0rehgCc7xuil7mo,22840
7
7
  ingestr/src/errors.py,sha256=Ufs4_DfE77_E3vnA1fOQdi6cmuLVNm7_SbFLkL1XPGk,686
8
8
  ingestr/src/factory.py,sha256=SQr7s-WCx_jL8DmPbeCc4VuE35z1J7gCAwKGAkOpv2M,6836
@@ -85,7 +85,7 @@ ingestr/src/kinesis/helpers.py,sha256=SO2cFmWNGcykUYmjHdfxWsOQSkLQXyhFtfWnkcUOM0
85
85
  ingestr/src/klaviyo/__init__.py,sha256=o_noUgbxLk36s4f9W56_ibPorF0n7kVapPUlV0p-jfA,7875
86
86
  ingestr/src/klaviyo/client.py,sha256=tPj79ia7AW0ZOJhzlKNPCliGbdojRNwUFp8HvB2ym5s,7434
87
87
  ingestr/src/klaviyo/helpers.py,sha256=_i-SHffhv25feLDcjy6Blj1UxYLISCwVCMgGtrlnYHk,496
88
- ingestr/src/linear/__init__.py,sha256=G2x4HaRl8WWReDJ5HElnNTfVIybdztrIB3acl1ickyo,11003
88
+ ingestr/src/linear/__init__.py,sha256=f0f9MBEV3tK-tTT2DUOj-0-xl2QRJs1x0nYv2Lo1FZQ,12277
89
89
  ingestr/src/linear/helpers.py,sha256=pPqtJrY3D3U2IaqTsD6ChvwMLYiUVtmQ8wTvetz5U7A,3640
90
90
  ingestr/src/linkedin_ads/__init__.py,sha256=CAPWFyV24loziiphbLmODxZUXZJwm4JxlFkr56q0jfo,1855
91
91
  ingestr/src/linkedin_ads/dimension_time_enum.py,sha256=EmHRdkFyTAfo4chGjThrwqffWJxmAadZMbpTvf0xkQc,198
@@ -125,7 +125,7 @@ ingestr/src/solidgate/__init__.py,sha256=Ts83j-JSnFsFuF4tDhVOfZKg7H0-bIpfn3kg1ZO
125
125
  ingestr/src/solidgate/helpers.py,sha256=mAsW_1hpD7ab3Y2vw8fxHi4yD3aT1geLdIYZ7ycyxBc,5690
126
126
  ingestr/src/sql_database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
127
  ingestr/src/sql_database/callbacks.py,sha256=sEFFmXxAURY3yeBjnawigDtq9LBCvi8HFqG4kLd7tMU,2002
128
- ingestr/src/stripe_analytics/__init__.py,sha256=mK8dGKAlMPVqGE9gG30XfbvOvgVD0yWhNpt-D3iavDY,6385
128
+ ingestr/src/stripe_analytics/__init__.py,sha256=6c4zNY5CgmyjbEF94Ch8zUefdl_w8sLI3FjHUyPcC2U,6406
129
129
  ingestr/src/stripe_analytics/helpers.py,sha256=KGtRcSrhKEqzJ3AWpgDV2o4cuBFaIwu2Gc1KgvVWTtg,11764
130
130
  ingestr/src/stripe_analytics/settings.py,sha256=xt1-ljwP4nLTNUa8l3KwFbtK8FtQHgHpzGF5uPKfRsw,2246
131
131
  ingestr/src/telemetry/event.py,sha256=W7bs4uVfPakQ5otmiqgqu1l5SqjYx1p87wudnWXckBc,949
@@ -153,8 +153,8 @@ ingestr/testdata/merge_expected.csv,sha256=DReHqWGnQMsf2PBv_Q2pfjsgvikYFnf1zYcQZ
153
153
  ingestr/testdata/merge_part1.csv,sha256=Pw8Z9IDKcNU0qQHx1z6BUf4rF_-SxKGFOvymCt4OY9I,185
154
154
  ingestr/testdata/merge_part2.csv,sha256=T_GiWxA81SN63_tMOIuemcvboEFeAmbKc7xRXvL9esw,287
155
155
  ingestr/tests/unit/test_smartsheets.py,sha256=eiC2CCO4iNJcuN36ONvqmEDryCA1bA1REpayHpu42lk,5058
156
- ingestr-0.13.83.dist-info/METADATA,sha256=SP8vz_9PH-RBNLkM7QzR3YEMIR8nxXhsGyJN9s09Cig,15182
157
- ingestr-0.13.83.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
158
- ingestr-0.13.83.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
159
- ingestr-0.13.83.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
160
- ingestr-0.13.83.dist-info/RECORD,,
156
+ ingestr-0.13.84.dist-info/METADATA,sha256=RPTXlNxSvMJjGa4dE8VH_7gZsv9dqw51BI7E3dzJQbw,15182
157
+ ingestr-0.13.84.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
158
+ ingestr-0.13.84.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
159
+ ingestr-0.13.84.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
160
+ ingestr-0.13.84.dist-info/RECORD,,