ingestr 0.13.83__py3-none-any.whl → 0.13.85__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 +1 -1
- ingestr/src/linear/__init__.py +76 -0
- ingestr/src/stripe_analytics/__init__.py +1 -1
- {ingestr-0.13.83.dist-info → ingestr-0.13.85.dist-info}/METADATA +2 -2
- {ingestr-0.13.83.dist-info → ingestr-0.13.85.dist-info}/RECORD +8 -8
- {ingestr-0.13.83.dist-info → ingestr-0.13.85.dist-info}/WHEEL +0 -0
- {ingestr-0.13.83.dist-info → ingestr-0.13.85.dist-info}/entry_points.txt +0 -0
- {ingestr-0.13.83.dist-info → ingestr-0.13.85.dist-info}/licenses/LICENSE.md +0 -0
ingestr/src/buildinfo.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version = "v0.13.
|
|
1
|
+
version = "v0.13.85"
|
ingestr/src/linear/__init__.py
CHANGED
|
@@ -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
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ingestr
|
|
3
|
-
Version: 0.13.
|
|
3
|
+
Version: 0.13.85
|
|
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.
|
|
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=
|
|
5
|
+
ingestr/src/buildinfo.py,sha256=8R_qSk4KmqC0NReX2RH71MpXDTrSB4tdbtvR1yvLRcA,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=
|
|
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=
|
|
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.
|
|
157
|
-
ingestr-0.13.
|
|
158
|
-
ingestr-0.13.
|
|
159
|
-
ingestr-0.13.
|
|
160
|
-
ingestr-0.13.
|
|
156
|
+
ingestr-0.13.85.dist-info/METADATA,sha256=N2Ry0lJc07fkSUuBUG6QuqaWlgmeClzGZZQkWrohu8I,15182
|
|
157
|
+
ingestr-0.13.85.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
158
|
+
ingestr-0.13.85.dist-info/entry_points.txt,sha256=oPJy0KBnPWYjDtP1k8qwAihcTLHSZokSQvRAw_wtfJM,46
|
|
159
|
+
ingestr-0.13.85.dist-info/licenses/LICENSE.md,sha256=cW8wIhn8HFE-KLStDF9jHQ1O_ARWP3kTpk_-eOccL24,1075
|
|
160
|
+
ingestr-0.13.85.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|