cf-service-sdk 0.1.50 → 0.1.51
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.
- package/dist/generated/graphql.d.ts +57 -0
- package/dist/generated/graphql.js +51 -0
- package/dist/mutations.js +18 -0
- package/dist/queries.js +33 -0
- package/package.json +1 -1
|
@@ -1566,6 +1566,12 @@ export type CompanyObject = {
|
|
|
1566
1566
|
lastContactedBy?: Maybe<UserType>;
|
|
1567
1567
|
/** Information about the last contact action for this company */
|
|
1568
1568
|
lastContactedVia?: Maybe<LastContactedViaType>;
|
|
1569
|
+
/** Last time Apollo enrichment brought relevant_contact_count to threshold */
|
|
1570
|
+
lastEnrichedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1571
|
+
/** Last time Apollo enrichment was attempted, regardless of outcome */
|
|
1572
|
+
lastEnrichmentAttemptedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1573
|
+
/** success | no_match | no_suitable_contacts | error */
|
|
1574
|
+
lastEnrichmentStatus?: Maybe<Scalars['String']['output']>;
|
|
1569
1575
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
1570
1576
|
location?: Maybe<Scalars['String']['output']>;
|
|
1571
1577
|
/** List of all company locations */
|
|
@@ -7890,6 +7896,9 @@ export type CreateCompanyMutation = {
|
|
|
7890
7896
|
phone?: string | null;
|
|
7891
7897
|
email?: string | null;
|
|
7892
7898
|
annualRevenue?: string | null;
|
|
7899
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
7900
|
+
lastEnrichedAt?: any | null;
|
|
7901
|
+
lastEnrichmentStatus?: string | null;
|
|
7893
7902
|
version: CrmCompanyVersionChoices;
|
|
7894
7903
|
externalIdentifiers?: Array<string | null> | null;
|
|
7895
7904
|
mailLogs?: Array<string | null> | null;
|
|
@@ -8880,6 +8889,9 @@ export type CreateMysupplierMutation = {
|
|
|
8880
8889
|
phone?: string | null;
|
|
8881
8890
|
email?: string | null;
|
|
8882
8891
|
annualRevenue?: string | null;
|
|
8892
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
8893
|
+
lastEnrichedAt?: any | null;
|
|
8894
|
+
lastEnrichmentStatus?: string | null;
|
|
8883
8895
|
version: CrmCompanyVersionChoices;
|
|
8884
8896
|
externalIdentifiers?: Array<string | null> | null;
|
|
8885
8897
|
mailLogs?: Array<string | null> | null;
|
|
@@ -10052,6 +10064,9 @@ export type CreateSupplierlistMutation = {
|
|
|
10052
10064
|
phone?: string | null;
|
|
10053
10065
|
email?: string | null;
|
|
10054
10066
|
annualRevenue?: string | null;
|
|
10067
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
10068
|
+
lastEnrichedAt?: any | null;
|
|
10069
|
+
lastEnrichmentStatus?: string | null;
|
|
10055
10070
|
version: CrmCompanyVersionChoices;
|
|
10056
10071
|
externalIdentifiers?: Array<string | null> | null;
|
|
10057
10072
|
mailLogs?: Array<string | null> | null;
|
|
@@ -14640,6 +14655,9 @@ export type UpdateCompanyMutation = {
|
|
|
14640
14655
|
phone?: string | null;
|
|
14641
14656
|
email?: string | null;
|
|
14642
14657
|
annualRevenue?: string | null;
|
|
14658
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
14659
|
+
lastEnrichedAt?: any | null;
|
|
14660
|
+
lastEnrichmentStatus?: string | null;
|
|
14643
14661
|
version: CrmCompanyVersionChoices;
|
|
14644
14662
|
externalIdentifiers?: Array<string | null> | null;
|
|
14645
14663
|
mailLogs?: Array<string | null> | null;
|
|
@@ -15698,6 +15716,9 @@ export type UpdateMysupplierMutation = {
|
|
|
15698
15716
|
phone?: string | null;
|
|
15699
15717
|
email?: string | null;
|
|
15700
15718
|
annualRevenue?: string | null;
|
|
15719
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
15720
|
+
lastEnrichedAt?: any | null;
|
|
15721
|
+
lastEnrichmentStatus?: string | null;
|
|
15701
15722
|
version: CrmCompanyVersionChoices;
|
|
15702
15723
|
externalIdentifiers?: Array<string | null> | null;
|
|
15703
15724
|
mailLogs?: Array<string | null> | null;
|
|
@@ -16862,6 +16883,9 @@ export type UpdateSupplierlistMutation = {
|
|
|
16862
16883
|
phone?: string | null;
|
|
16863
16884
|
email?: string | null;
|
|
16864
16885
|
annualRevenue?: string | null;
|
|
16886
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
16887
|
+
lastEnrichedAt?: any | null;
|
|
16888
|
+
lastEnrichmentStatus?: string | null;
|
|
16865
16889
|
version: CrmCompanyVersionChoices;
|
|
16866
16890
|
externalIdentifiers?: Array<string | null> | null;
|
|
16867
16891
|
mailLogs?: Array<string | null> | null;
|
|
@@ -20801,6 +20825,9 @@ export type CompaniesQuery = {
|
|
|
20801
20825
|
phone?: string | null;
|
|
20802
20826
|
email?: string | null;
|
|
20803
20827
|
annualRevenue?: string | null;
|
|
20828
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
20829
|
+
lastEnrichedAt?: any | null;
|
|
20830
|
+
lastEnrichmentStatus?: string | null;
|
|
20804
20831
|
version: CrmCompanyVersionChoices;
|
|
20805
20832
|
externalIdentifiers?: Array<string | null> | null;
|
|
20806
20833
|
mailLogs?: Array<string | null> | null;
|
|
@@ -21511,6 +21538,9 @@ export type CompanyQuery = {
|
|
|
21511
21538
|
phone?: string | null;
|
|
21512
21539
|
email?: string | null;
|
|
21513
21540
|
annualRevenue?: string | null;
|
|
21541
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
21542
|
+
lastEnrichedAt?: any | null;
|
|
21543
|
+
lastEnrichmentStatus?: string | null;
|
|
21514
21544
|
version: CrmCompanyVersionChoices;
|
|
21515
21545
|
externalIdentifiers?: Array<string | null> | null;
|
|
21516
21546
|
mailLogs?: Array<string | null> | null;
|
|
@@ -22268,6 +22298,9 @@ export type CompanyNameSearchQuery = {
|
|
|
22268
22298
|
phone?: string | null;
|
|
22269
22299
|
email?: string | null;
|
|
22270
22300
|
annualRevenue?: string | null;
|
|
22301
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
22302
|
+
lastEnrichedAt?: any | null;
|
|
22303
|
+
lastEnrichmentStatus?: string | null;
|
|
22271
22304
|
version: CrmCompanyVersionChoices;
|
|
22272
22305
|
externalIdentifiers?: Array<string | null> | null;
|
|
22273
22306
|
mailLogs?: Array<string | null> | null;
|
|
@@ -23334,6 +23367,9 @@ export type CompanySearchQuery = {
|
|
|
23334
23367
|
phone?: string | null;
|
|
23335
23368
|
email?: string | null;
|
|
23336
23369
|
annualRevenue?: string | null;
|
|
23370
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
23371
|
+
lastEnrichedAt?: any | null;
|
|
23372
|
+
lastEnrichmentStatus?: string | null;
|
|
23337
23373
|
version: CrmCompanyVersionChoices;
|
|
23338
23374
|
externalIdentifiers?: Array<string | null> | null;
|
|
23339
23375
|
mailLogs?: Array<string | null> | null;
|
|
@@ -24870,6 +24906,9 @@ export type MysupplierQuery = {
|
|
|
24870
24906
|
phone?: string | null;
|
|
24871
24907
|
email?: string | null;
|
|
24872
24908
|
annualRevenue?: string | null;
|
|
24909
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
24910
|
+
lastEnrichedAt?: any | null;
|
|
24911
|
+
lastEnrichmentStatus?: string | null;
|
|
24873
24912
|
version: CrmCompanyVersionChoices;
|
|
24874
24913
|
externalIdentifiers?: Array<string | null> | null;
|
|
24875
24914
|
mailLogs?: Array<string | null> | null;
|
|
@@ -25572,6 +25611,9 @@ export type MysupplierListQuery = {
|
|
|
25572
25611
|
phone?: string | null;
|
|
25573
25612
|
email?: string | null;
|
|
25574
25613
|
annualRevenue?: string | null;
|
|
25614
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
25615
|
+
lastEnrichedAt?: any | null;
|
|
25616
|
+
lastEnrichmentStatus?: string | null;
|
|
25575
25617
|
version: CrmCompanyVersionChoices;
|
|
25576
25618
|
externalIdentifiers?: Array<string | null> | null;
|
|
25577
25619
|
mailLogs?: Array<string | null> | null;
|
|
@@ -26657,6 +26699,9 @@ export type RecentHistoryQuery = {
|
|
|
26657
26699
|
phone?: string | null;
|
|
26658
26700
|
email?: string | null;
|
|
26659
26701
|
annualRevenue?: string | null;
|
|
26702
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
26703
|
+
lastEnrichedAt?: any | null;
|
|
26704
|
+
lastEnrichmentStatus?: string | null;
|
|
26660
26705
|
version: CrmCompanyVersionChoices;
|
|
26661
26706
|
externalIdentifiers?: Array<string | null> | null;
|
|
26662
26707
|
mailLogs?: Array<string | null> | null;
|
|
@@ -28578,6 +28623,9 @@ export type SupplierQuery = {
|
|
|
28578
28623
|
phone?: string | null;
|
|
28579
28624
|
email?: string | null;
|
|
28580
28625
|
annualRevenue?: string | null;
|
|
28626
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
28627
|
+
lastEnrichedAt?: any | null;
|
|
28628
|
+
lastEnrichmentStatus?: string | null;
|
|
28581
28629
|
version: CrmCompanyVersionChoices;
|
|
28582
28630
|
externalIdentifiers?: Array<string | null> | null;
|
|
28583
28631
|
mailLogs?: Array<string | null> | null;
|
|
@@ -29391,6 +29439,9 @@ export type SupplierlistQuery = {
|
|
|
29391
29439
|
phone?: string | null;
|
|
29392
29440
|
email?: string | null;
|
|
29393
29441
|
annualRevenue?: string | null;
|
|
29442
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
29443
|
+
lastEnrichedAt?: any | null;
|
|
29444
|
+
lastEnrichmentStatus?: string | null;
|
|
29394
29445
|
version: CrmCompanyVersionChoices;
|
|
29395
29446
|
externalIdentifiers?: Array<string | null> | null;
|
|
29396
29447
|
mailLogs?: Array<string | null> | null;
|
|
@@ -30093,6 +30144,9 @@ export type SupplierlistListQuery = {
|
|
|
30093
30144
|
phone?: string | null;
|
|
30094
30145
|
email?: string | null;
|
|
30095
30146
|
annualRevenue?: string | null;
|
|
30147
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
30148
|
+
lastEnrichedAt?: any | null;
|
|
30149
|
+
lastEnrichmentStatus?: string | null;
|
|
30096
30150
|
version: CrmCompanyVersionChoices;
|
|
30097
30151
|
externalIdentifiers?: Array<string | null> | null;
|
|
30098
30152
|
mailLogs?: Array<string | null> | null;
|
|
@@ -30907,6 +30961,9 @@ export type SuppliersQuery = {
|
|
|
30907
30961
|
phone?: string | null;
|
|
30908
30962
|
email?: string | null;
|
|
30909
30963
|
annualRevenue?: string | null;
|
|
30964
|
+
lastEnrichmentAttemptedAt?: any | null;
|
|
30965
|
+
lastEnrichedAt?: any | null;
|
|
30966
|
+
lastEnrichmentStatus?: string | null;
|
|
30910
30967
|
version: CrmCompanyVersionChoices;
|
|
30911
30968
|
externalIdentifiers?: Array<string | null> | null;
|
|
30912
30969
|
mailLogs?: Array<string | null> | null;
|
|
@@ -2819,6 +2819,9 @@ exports.CreateCompanyDocument = (0, client_1.gql) `
|
|
|
2819
2819
|
name
|
|
2820
2820
|
description
|
|
2821
2821
|
}
|
|
2822
|
+
lastEnrichmentAttemptedAt
|
|
2823
|
+
lastEnrichedAt
|
|
2824
|
+
lastEnrichmentStatus
|
|
2822
2825
|
version
|
|
2823
2826
|
owners {
|
|
2824
2827
|
id
|
|
@@ -3802,6 +3805,9 @@ exports.CreateMysupplierDocument = (0, client_1.gql) `
|
|
|
3802
3805
|
name
|
|
3803
3806
|
description
|
|
3804
3807
|
}
|
|
3808
|
+
lastEnrichmentAttemptedAt
|
|
3809
|
+
lastEnrichedAt
|
|
3810
|
+
lastEnrichmentStatus
|
|
3805
3811
|
version
|
|
3806
3812
|
owners {
|
|
3807
3813
|
id
|
|
@@ -5038,6 +5044,9 @@ exports.CreateSupplierlistDocument = (0, client_1.gql) `
|
|
|
5038
5044
|
name
|
|
5039
5045
|
description
|
|
5040
5046
|
}
|
|
5047
|
+
lastEnrichmentAttemptedAt
|
|
5048
|
+
lastEnrichedAt
|
|
5049
|
+
lastEnrichmentStatus
|
|
5041
5050
|
version
|
|
5042
5051
|
owners {
|
|
5043
5052
|
id
|
|
@@ -10963,6 +10972,9 @@ exports.UpdateCompanyDocument = (0, client_1.gql) `
|
|
|
10963
10972
|
name
|
|
10964
10973
|
description
|
|
10965
10974
|
}
|
|
10975
|
+
lastEnrichmentAttemptedAt
|
|
10976
|
+
lastEnrichedAt
|
|
10977
|
+
lastEnrichmentStatus
|
|
10966
10978
|
version
|
|
10967
10979
|
owners {
|
|
10968
10980
|
id
|
|
@@ -12082,6 +12094,9 @@ exports.UpdateMysupplierDocument = (0, client_1.gql) `
|
|
|
12082
12094
|
name
|
|
12083
12095
|
description
|
|
12084
12096
|
}
|
|
12097
|
+
lastEnrichmentAttemptedAt
|
|
12098
|
+
lastEnrichedAt
|
|
12099
|
+
lastEnrichmentStatus
|
|
12085
12100
|
version
|
|
12086
12101
|
owners {
|
|
12087
12102
|
id
|
|
@@ -13289,6 +13304,9 @@ exports.UpdateSupplierlistDocument = (0, client_1.gql) `
|
|
|
13289
13304
|
name
|
|
13290
13305
|
description
|
|
13291
13306
|
}
|
|
13307
|
+
lastEnrichmentAttemptedAt
|
|
13308
|
+
lastEnrichedAt
|
|
13309
|
+
lastEnrichmentStatus
|
|
13292
13310
|
version
|
|
13293
13311
|
owners {
|
|
13294
13312
|
id
|
|
@@ -17884,6 +17902,9 @@ exports.CompaniesDocument = (0, client_1.gql) `
|
|
|
17884
17902
|
name
|
|
17885
17903
|
description
|
|
17886
17904
|
}
|
|
17905
|
+
lastEnrichmentAttemptedAt
|
|
17906
|
+
lastEnrichedAt
|
|
17907
|
+
lastEnrichmentStatus
|
|
17887
17908
|
version
|
|
17888
17909
|
owners {
|
|
17889
17910
|
id
|
|
@@ -18562,6 +18583,9 @@ exports.CompanyDocument = (0, client_1.gql) `
|
|
|
18562
18583
|
name
|
|
18563
18584
|
description
|
|
18564
18585
|
}
|
|
18586
|
+
lastEnrichmentAttemptedAt
|
|
18587
|
+
lastEnrichedAt
|
|
18588
|
+
lastEnrichmentStatus
|
|
18565
18589
|
version
|
|
18566
18590
|
owners {
|
|
18567
18591
|
id
|
|
@@ -19358,6 +19382,9 @@ exports.CompanyNameSearchDocument = (0, client_1.gql) `
|
|
|
19358
19382
|
name
|
|
19359
19383
|
description
|
|
19360
19384
|
}
|
|
19385
|
+
lastEnrichmentAttemptedAt
|
|
19386
|
+
lastEnrichedAt
|
|
19387
|
+
lastEnrichmentStatus
|
|
19361
19388
|
version
|
|
19362
19389
|
owners {
|
|
19363
19390
|
id
|
|
@@ -20420,6 +20447,9 @@ exports.CompanySearchDocument = (0, client_1.gql) `
|
|
|
20420
20447
|
name
|
|
20421
20448
|
description
|
|
20422
20449
|
}
|
|
20450
|
+
lastEnrichmentAttemptedAt
|
|
20451
|
+
lastEnrichedAt
|
|
20452
|
+
lastEnrichmentStatus
|
|
20423
20453
|
version
|
|
20424
20454
|
owners {
|
|
20425
20455
|
id
|
|
@@ -22506,6 +22536,9 @@ exports.MysupplierDocument = (0, client_1.gql) `
|
|
|
22506
22536
|
name
|
|
22507
22537
|
description
|
|
22508
22538
|
}
|
|
22539
|
+
lastEnrichmentAttemptedAt
|
|
22540
|
+
lastEnrichedAt
|
|
22541
|
+
lastEnrichmentStatus
|
|
22509
22542
|
version
|
|
22510
22543
|
owners {
|
|
22511
22544
|
id
|
|
@@ -23173,6 +23206,9 @@ exports.MysupplierListDocument = (0, client_1.gql) `
|
|
|
23173
23206
|
name
|
|
23174
23207
|
description
|
|
23175
23208
|
}
|
|
23209
|
+
lastEnrichmentAttemptedAt
|
|
23210
|
+
lastEnrichedAt
|
|
23211
|
+
lastEnrichmentStatus
|
|
23176
23212
|
version
|
|
23177
23213
|
owners {
|
|
23178
23214
|
id
|
|
@@ -24467,6 +24503,9 @@ exports.RecentHistoryDocument = (0, client_1.gql) `
|
|
|
24467
24503
|
name
|
|
24468
24504
|
description
|
|
24469
24505
|
}
|
|
24506
|
+
lastEnrichmentAttemptedAt
|
|
24507
|
+
lastEnrichedAt
|
|
24508
|
+
lastEnrichmentStatus
|
|
24470
24509
|
version
|
|
24471
24510
|
owners {
|
|
24472
24511
|
id
|
|
@@ -26747,6 +26786,9 @@ exports.SupplierDocument = (0, client_1.gql) `
|
|
|
26747
26786
|
name
|
|
26748
26787
|
description
|
|
26749
26788
|
}
|
|
26789
|
+
lastEnrichmentAttemptedAt
|
|
26790
|
+
lastEnrichedAt
|
|
26791
|
+
lastEnrichmentStatus
|
|
26750
26792
|
version
|
|
26751
26793
|
owners {
|
|
26752
26794
|
id
|
|
@@ -27570,6 +27612,9 @@ exports.SupplierlistDocument = (0, client_1.gql) `
|
|
|
27570
27612
|
name
|
|
27571
27613
|
description
|
|
27572
27614
|
}
|
|
27615
|
+
lastEnrichmentAttemptedAt
|
|
27616
|
+
lastEnrichedAt
|
|
27617
|
+
lastEnrichmentStatus
|
|
27573
27618
|
version
|
|
27574
27619
|
owners {
|
|
27575
27620
|
id
|
|
@@ -28237,6 +28282,9 @@ exports.SupplierlistListDocument = (0, client_1.gql) `
|
|
|
28237
28282
|
name
|
|
28238
28283
|
description
|
|
28239
28284
|
}
|
|
28285
|
+
lastEnrichmentAttemptedAt
|
|
28286
|
+
lastEnrichedAt
|
|
28287
|
+
lastEnrichmentStatus
|
|
28240
28288
|
version
|
|
28241
28289
|
owners {
|
|
28242
28290
|
id
|
|
@@ -29004,6 +29052,9 @@ exports.SuppliersDocument = (0, client_1.gql) `
|
|
|
29004
29052
|
name
|
|
29005
29053
|
description
|
|
29006
29054
|
}
|
|
29055
|
+
lastEnrichmentAttemptedAt
|
|
29056
|
+
lastEnrichedAt
|
|
29057
|
+
lastEnrichmentStatus
|
|
29007
29058
|
version
|
|
29008
29059
|
owners {
|
|
29009
29060
|
id
|
package/dist/mutations.js
CHANGED
|
@@ -133,6 +133,9 @@ mutation CreateMysupplier($input: MySupplierInput!) {
|
|
|
133
133
|
name
|
|
134
134
|
description
|
|
135
135
|
}
|
|
136
|
+
lastEnrichmentAttemptedAt
|
|
137
|
+
lastEnrichedAt
|
|
138
|
+
lastEnrichmentStatus
|
|
136
139
|
version
|
|
137
140
|
owners {
|
|
138
141
|
id
|
|
@@ -777,6 +780,9 @@ mutation UpdateMysupplier($id: ID!, $input: MySupplierInput!) {
|
|
|
777
780
|
name
|
|
778
781
|
description
|
|
779
782
|
}
|
|
783
|
+
lastEnrichmentAttemptedAt
|
|
784
|
+
lastEnrichedAt
|
|
785
|
+
lastEnrichmentStatus
|
|
780
786
|
version
|
|
781
787
|
owners {
|
|
782
788
|
id
|
|
@@ -1723,6 +1729,9 @@ mutation CreateSupplierlist($input: SupplierListInput!) {
|
|
|
1723
1729
|
name
|
|
1724
1730
|
description
|
|
1725
1731
|
}
|
|
1732
|
+
lastEnrichmentAttemptedAt
|
|
1733
|
+
lastEnrichedAt
|
|
1734
|
+
lastEnrichmentStatus
|
|
1726
1735
|
version
|
|
1727
1736
|
owners {
|
|
1728
1737
|
id
|
|
@@ -2367,6 +2376,9 @@ mutation UpdateSupplierlist($id: ID!, $input: SupplierListInput!) {
|
|
|
2367
2376
|
name
|
|
2368
2377
|
description
|
|
2369
2378
|
}
|
|
2379
|
+
lastEnrichmentAttemptedAt
|
|
2380
|
+
lastEnrichedAt
|
|
2381
|
+
lastEnrichmentStatus
|
|
2370
2382
|
version
|
|
2371
2383
|
owners {
|
|
2372
2384
|
id
|
|
@@ -5456,6 +5468,9 @@ mutation CreateCompany($input: CompanyInput) {
|
|
|
5456
5468
|
name
|
|
5457
5469
|
description
|
|
5458
5470
|
}
|
|
5471
|
+
lastEnrichmentAttemptedAt
|
|
5472
|
+
lastEnrichedAt
|
|
5473
|
+
lastEnrichmentStatus
|
|
5459
5474
|
version
|
|
5460
5475
|
owners {
|
|
5461
5476
|
id
|
|
@@ -6095,6 +6110,9 @@ mutation UpdateCompany($input: CompanyInput) {
|
|
|
6095
6110
|
name
|
|
6096
6111
|
description
|
|
6097
6112
|
}
|
|
6113
|
+
lastEnrichmentAttemptedAt
|
|
6114
|
+
lastEnrichedAt
|
|
6115
|
+
lastEnrichmentStatus
|
|
6098
6116
|
version
|
|
6099
6117
|
owners {
|
|
6100
6118
|
id
|
package/dist/queries.js
CHANGED
|
@@ -257,6 +257,9 @@ query Mysupplier($id: ID!) {
|
|
|
257
257
|
name
|
|
258
258
|
description
|
|
259
259
|
}
|
|
260
|
+
lastEnrichmentAttemptedAt
|
|
261
|
+
lastEnrichedAt
|
|
262
|
+
lastEnrichmentStatus
|
|
260
263
|
version
|
|
261
264
|
owners {
|
|
262
265
|
id
|
|
@@ -895,6 +898,9 @@ query MysupplierList($filters: Procurement_MySupplierFilterInput, $pagination: P
|
|
|
895
898
|
name
|
|
896
899
|
description
|
|
897
900
|
}
|
|
901
|
+
lastEnrichmentAttemptedAt
|
|
902
|
+
lastEnrichedAt
|
|
903
|
+
lastEnrichmentStatus
|
|
898
904
|
version
|
|
899
905
|
owners {
|
|
900
906
|
id
|
|
@@ -1853,6 +1859,9 @@ query Supplierlist($id: ID!) {
|
|
|
1853
1859
|
name
|
|
1854
1860
|
description
|
|
1855
1861
|
}
|
|
1862
|
+
lastEnrichmentAttemptedAt
|
|
1863
|
+
lastEnrichedAt
|
|
1864
|
+
lastEnrichmentStatus
|
|
1856
1865
|
version
|
|
1857
1866
|
owners {
|
|
1858
1867
|
id
|
|
@@ -2491,6 +2500,9 @@ query SupplierlistList($filters: Procurement_SupplierListFilterInput, $paginatio
|
|
|
2491
2500
|
name
|
|
2492
2501
|
description
|
|
2493
2502
|
}
|
|
2503
|
+
lastEnrichmentAttemptedAt
|
|
2504
|
+
lastEnrichedAt
|
|
2505
|
+
lastEnrichmentStatus
|
|
2494
2506
|
version
|
|
2495
2507
|
owners {
|
|
2496
2508
|
id
|
|
@@ -3536,6 +3548,9 @@ query Suppliers($filters: SupplierSearchFilterInput, $pagination: PaginationInpu
|
|
|
3536
3548
|
name
|
|
3537
3549
|
description
|
|
3538
3550
|
}
|
|
3551
|
+
lastEnrichmentAttemptedAt
|
|
3552
|
+
lastEnrichedAt
|
|
3553
|
+
lastEnrichmentStatus
|
|
3539
3554
|
version
|
|
3540
3555
|
owners {
|
|
3541
3556
|
id
|
|
@@ -4283,6 +4298,9 @@ query Supplier($id: ID!) {
|
|
|
4283
4298
|
name
|
|
4284
4299
|
description
|
|
4285
4300
|
}
|
|
4301
|
+
lastEnrichmentAttemptedAt
|
|
4302
|
+
lastEnrichedAt
|
|
4303
|
+
lastEnrichmentStatus
|
|
4286
4304
|
version
|
|
4287
4305
|
owners {
|
|
4288
4306
|
id
|
|
@@ -6316,6 +6334,9 @@ query RecentHistory($filter: RecentHistoryFilterInput, $sort: RecentHistorySortI
|
|
|
6316
6334
|
name
|
|
6317
6335
|
description
|
|
6318
6336
|
}
|
|
6337
|
+
lastEnrichmentAttemptedAt
|
|
6338
|
+
lastEnrichedAt
|
|
6339
|
+
lastEnrichmentStatus
|
|
6319
6340
|
version
|
|
6320
6341
|
owners {
|
|
6321
6342
|
id
|
|
@@ -9708,6 +9729,9 @@ query Companies($filters: CompanyFilterInput, $pagination: PaginationInput, $sor
|
|
|
9708
9729
|
name
|
|
9709
9730
|
description
|
|
9710
9731
|
}
|
|
9732
|
+
lastEnrichmentAttemptedAt
|
|
9733
|
+
lastEnrichedAt
|
|
9734
|
+
lastEnrichmentStatus
|
|
9711
9735
|
version
|
|
9712
9736
|
owners {
|
|
9713
9737
|
id
|
|
@@ -10356,6 +10380,9 @@ query CompanySearch($filters: CompanyFilterInput, $pagination: PaginationInput,
|
|
|
10356
10380
|
name
|
|
10357
10381
|
description
|
|
10358
10382
|
}
|
|
10383
|
+
lastEnrichmentAttemptedAt
|
|
10384
|
+
lastEnrichedAt
|
|
10385
|
+
lastEnrichmentStatus
|
|
10359
10386
|
version
|
|
10360
10387
|
owners {
|
|
10361
10388
|
id
|
|
@@ -11004,6 +11031,9 @@ query CompanyNameSearch($search: String, $pagination: PaginationInput) {
|
|
|
11004
11031
|
name
|
|
11005
11032
|
description
|
|
11006
11033
|
}
|
|
11034
|
+
lastEnrichmentAttemptedAt
|
|
11035
|
+
lastEnrichedAt
|
|
11036
|
+
lastEnrichmentStatus
|
|
11007
11037
|
version
|
|
11008
11038
|
owners {
|
|
11009
11039
|
id
|
|
@@ -11813,6 +11843,9 @@ query Company($id: String) {
|
|
|
11813
11843
|
name
|
|
11814
11844
|
description
|
|
11815
11845
|
}
|
|
11846
|
+
lastEnrichmentAttemptedAt
|
|
11847
|
+
lastEnrichedAt
|
|
11848
|
+
lastEnrichmentStatus
|
|
11816
11849
|
version
|
|
11817
11850
|
owners {
|
|
11818
11851
|
id
|