ms-salesforce-api 3.2.0__py3-none-any.whl → 3.3.0__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.
- ms_salesforce_api/salesforce/api/addtech_onboarding/constants.py +2 -0
- ms_salesforce_api/salesforce/api/addtech_onboarding/dto/AddTechOnboarding.py +8 -0
- ms_salesforce_api/salesforce/api/addtech_onboarding/export_data/Bigquery.py +2 -0
- {ms_salesforce_api-3.2.0.dist-info → ms_salesforce_api-3.3.0.dist-info}/METADATA +4 -2
- {ms_salesforce_api-3.2.0.dist-info → ms_salesforce_api-3.3.0.dist-info}/RECORD +7 -7
- {ms_salesforce_api-3.2.0.dist-info → ms_salesforce_api-3.3.0.dist-info}/WHEEL +1 -1
- {ms_salesforce_api-3.2.0.dist-info → ms_salesforce_api-3.3.0.dist-info/licenses}/LICENSE +0 -0
|
@@ -23,6 +23,8 @@ class AddTechOnboardingDTO(object):
|
|
|
23
23
|
txt_gmp_org_id,
|
|
24
24
|
txt_manager_id,
|
|
25
25
|
txt_platform_acc_name,
|
|
26
|
+
adtech_propduct_name,
|
|
27
|
+
yangtse_name,
|
|
26
28
|
):
|
|
27
29
|
self.id = id
|
|
28
30
|
self.account_id = account_id
|
|
@@ -47,6 +49,8 @@ class AddTechOnboardingDTO(object):
|
|
|
47
49
|
self.txt_gmp_org_id = txt_gmp_org_id
|
|
48
50
|
self.txt_manager_id = txt_manager_id
|
|
49
51
|
self.txt_platform_acc_name = txt_platform_acc_name
|
|
52
|
+
self.adtech_propduct_name = adtech_propduct_name
|
|
53
|
+
self.yangtse_name = yangtse_name
|
|
50
54
|
|
|
51
55
|
@staticmethod
|
|
52
56
|
def from_salesforce_record(record: dict):
|
|
@@ -111,6 +115,8 @@ class AddTechOnboardingDTO(object):
|
|
|
111
115
|
advertiser_id=record["Advertiser_Id__c"],
|
|
112
116
|
name=normalize_value(record["Name"]),
|
|
113
117
|
opportunity=record["Opportunity__c"],
|
|
118
|
+
adtech_propduct_name=record["FRM_ProductName__c"],
|
|
119
|
+
yangtse_name=record["FRM_Name__c"],
|
|
114
120
|
opportunity_account_id=_get_opportunity_account_id(),
|
|
115
121
|
opportunity_project_code=_get_opportunity_project_code(),
|
|
116
122
|
opportunity_project_name=_get_opportunity_project_name(),
|
|
@@ -150,4 +156,6 @@ class AddTechOnboardingDTO(object):
|
|
|
150
156
|
"txt_gmp_org_id": self.txt_gmp_org_id,
|
|
151
157
|
"txt_manager_id": self.txt_manager_id,
|
|
152
158
|
"txt_platform_acc_name": self.txt_platform_acc_name,
|
|
159
|
+
"adtech_propduct_name": self.adtech_propduct_name,
|
|
160
|
+
"yangtse_name": self.yangtse_name,
|
|
153
161
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ms-salesforce-api
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3.0
|
|
4
4
|
Summary: Python library used to extract data from Salesforce API and migrate it to Bigquery and Postgres.
|
|
5
|
+
License-File: LICENSE
|
|
5
6
|
Author: Making Science
|
|
6
7
|
Requires-Python: >=3.8.1,<4.0.0
|
|
7
8
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -10,6 +11,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
10
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
11
12
|
Classifier: Programming Language :: Python :: 3.12
|
|
12
13
|
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
13
15
|
Requires-Dist: flake8 (>=6.0.0,<7.0.0)
|
|
14
16
|
Requires-Dist: gc-google-services-api (>=1.2.7,<2.0.0)
|
|
15
17
|
Requires-Dist: isort (>=5.12.0,<6.0.0)
|
|
@@ -15,10 +15,10 @@ ms_salesforce_api/salesforce/api/account/dto/__init__.py,sha256=47DEQpj8HBSa-_TI
|
|
|
15
15
|
ms_salesforce_api/salesforce/api/account/export_data/Bigquery.py,sha256=Tmpu7duU0hje1wwlTFJTyYSTSJK3LlVN20xzI-8Nx0E,4254
|
|
16
16
|
ms_salesforce_api/salesforce/api/account/export_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
ms_salesforce_api/salesforce/api/addtech_onboarding/__init__.py,sha256=rXj0XF-wPLOD9mTA-Oyb8O43STJ4ANIGwyP9SqAxZmg,1651
|
|
18
|
-
ms_salesforce_api/salesforce/api/addtech_onboarding/constants.py,sha256=
|
|
19
|
-
ms_salesforce_api/salesforce/api/addtech_onboarding/dto/AddTechOnboarding.py,sha256=
|
|
18
|
+
ms_salesforce_api/salesforce/api/addtech_onboarding/constants.py,sha256=EjAoYT4rKIsmXusNbND8O0CGnpmGWGR00f_BvK3Ij1k,597
|
|
19
|
+
ms_salesforce_api/salesforce/api/addtech_onboarding/dto/AddTechOnboarding.py,sha256=eROU1bm-iYru5bdOhmgOivrI90-wFlki0pRwZbWIGl4,6507
|
|
20
20
|
ms_salesforce_api/salesforce/api/addtech_onboarding/dto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
ms_salesforce_api/salesforce/api/addtech_onboarding/export_data/Bigquery.py,sha256=
|
|
21
|
+
ms_salesforce_api/salesforce/api/addtech_onboarding/export_data/Bigquery.py,sha256=6lvJa1uOWGP0BSDDdsUbkhqKqcSYJ8pZgzD68dkix-U,2975
|
|
22
22
|
ms_salesforce_api/salesforce/api/addtech_onboarding/export_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
ms_salesforce_api/salesforce/api/contact/__init__.py,sha256=G3Fv5L5SYv1B9NdqKxTqkeadcM5smntxiT1bUDnfxPs,1497
|
|
24
24
|
ms_salesforce_api/salesforce/api/contact/constants.py,sha256=v_WRmZcGUcKdCijpeZGXFTTZcGJBLiWx2dw8j5hwb3M,137
|
|
@@ -85,7 +85,7 @@ ms_salesforce_api/salesforce/api/project/export_data/__tests__/__init__.py,sha25
|
|
|
85
85
|
ms_salesforce_api/salesforce/api/project/export_data/__tests__/test_CloudSQL.py,sha256=Cn6eixLYMlAxTStG90zEvmLOYfgt3D2BSmPSUL2WKGA,13717
|
|
86
86
|
ms_salesforce_api/salesforce/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
87
|
ms_salesforce_api/salesforce/helpers/string.py,sha256=wRtMU_EFIihbZCyR_wPdQpLanPk2ejlddmiWyNwfi1Q,303
|
|
88
|
-
ms_salesforce_api-3.
|
|
89
|
-
ms_salesforce_api-3.
|
|
90
|
-
ms_salesforce_api-3.
|
|
91
|
-
ms_salesforce_api-3.
|
|
88
|
+
ms_salesforce_api-3.3.0.dist-info/METADATA,sha256=nawkOSccaROnSzgCFCTejGbDeBSbqg7H5Iaps1HKLlk,9277
|
|
89
|
+
ms_salesforce_api-3.3.0.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
|
|
90
|
+
ms_salesforce_api-3.3.0.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
91
|
+
ms_salesforce_api-3.3.0.dist-info/RECORD,,
|
|
File without changes
|