cf-service-sdk 0.1.47 → 0.1.49
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 +274 -217
- package/dist/generated/graphql.js +55 -0
- package/dist/mutations.js +18 -0
- package/dist/queries.js +37 -0
- package/package.json +1 -1
|
@@ -757,6 +757,8 @@ export type CampaignContactItemType = {
|
|
|
757
757
|
populatedSubject?: Maybe<Scalars['String']['output']>;
|
|
758
758
|
/** Number of replies from this contact in this campaign */
|
|
759
759
|
replyCount?: Maybe<Scalars['Int']['output']>;
|
|
760
|
+
/** Per-row send eligibility used by the campaign review screen. One of SENDABLE, DUPLICATE, NO_EMAIL, EXCLUDED. */
|
|
761
|
+
sendStatus?: Maybe<Scalars['String']['output']>;
|
|
760
762
|
/** Step ID for combined campaign contacts */
|
|
761
763
|
stepId?: Maybe<Scalars['ID']['output']>;
|
|
762
764
|
/** Step order for combined campaign contacts */
|
|
@@ -2553,13 +2555,13 @@ export type HideRecord = {
|
|
|
2553
2555
|
message?: Maybe<Scalars['String']['output']>;
|
|
2554
2556
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
2555
2557
|
};
|
|
2556
|
-
/** Industry sector with its details */
|
|
2557
2558
|
export type IndustrySectorObject = {
|
|
2558
2559
|
__typename?: 'IndustrySectorObject';
|
|
2559
|
-
description
|
|
2560
|
-
id
|
|
2561
|
-
name
|
|
2562
|
-
orderBy
|
|
2560
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
2561
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2562
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2563
|
+
orderBy?: Maybe<Scalars['Int']['output']>;
|
|
2564
|
+
pk?: Maybe<Scalars['ID']['output']>;
|
|
2563
2565
|
};
|
|
2564
2566
|
export type IndustryTypeObject = {
|
|
2565
2567
|
__typename?: 'IndustryTypeObject';
|
|
@@ -8439,10 +8441,11 @@ export type CreateCompanyMutation = {
|
|
|
8439
8441
|
description?: string | null;
|
|
8440
8442
|
industrySector?: {
|
|
8441
8443
|
__typename?: 'IndustrySectorObject';
|
|
8442
|
-
id
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8444
|
+
id?: string | null;
|
|
8445
|
+
pk?: string | null;
|
|
8446
|
+
name?: string | null;
|
|
8447
|
+
description?: string | null;
|
|
8448
|
+
orderBy?: number | null;
|
|
8446
8449
|
} | null;
|
|
8447
8450
|
} | null;
|
|
8448
8451
|
} | null> | null;
|
|
@@ -8475,10 +8478,11 @@ export type CreateCompanyMutation = {
|
|
|
8475
8478
|
description?: string | null;
|
|
8476
8479
|
industrySector?: {
|
|
8477
8480
|
__typename?: 'IndustrySectorObject';
|
|
8478
|
-
id
|
|
8479
|
-
|
|
8480
|
-
|
|
8481
|
-
|
|
8481
|
+
id?: string | null;
|
|
8482
|
+
pk?: string | null;
|
|
8483
|
+
name?: string | null;
|
|
8484
|
+
description?: string | null;
|
|
8485
|
+
orderBy?: number | null;
|
|
8482
8486
|
} | null;
|
|
8483
8487
|
} | null;
|
|
8484
8488
|
industries?: Array<{
|
|
@@ -8494,10 +8498,11 @@ export type CreateCompanyMutation = {
|
|
|
8494
8498
|
description?: string | null;
|
|
8495
8499
|
industrySector?: {
|
|
8496
8500
|
__typename?: 'IndustrySectorObject';
|
|
8497
|
-
id
|
|
8498
|
-
|
|
8499
|
-
|
|
8500
|
-
|
|
8501
|
+
id?: string | null;
|
|
8502
|
+
pk?: string | null;
|
|
8503
|
+
name?: string | null;
|
|
8504
|
+
description?: string | null;
|
|
8505
|
+
orderBy?: number | null;
|
|
8501
8506
|
} | null;
|
|
8502
8507
|
} | null;
|
|
8503
8508
|
} | null> | null;
|
|
@@ -9426,10 +9431,11 @@ export type CreateMysupplierMutation = {
|
|
|
9426
9431
|
description?: string | null;
|
|
9427
9432
|
industrySector?: {
|
|
9428
9433
|
__typename?: 'IndustrySectorObject';
|
|
9429
|
-
id
|
|
9430
|
-
|
|
9431
|
-
|
|
9432
|
-
|
|
9434
|
+
id?: string | null;
|
|
9435
|
+
pk?: string | null;
|
|
9436
|
+
name?: string | null;
|
|
9437
|
+
description?: string | null;
|
|
9438
|
+
orderBy?: number | null;
|
|
9433
9439
|
} | null;
|
|
9434
9440
|
} | null;
|
|
9435
9441
|
} | null> | null;
|
|
@@ -9456,10 +9462,11 @@ export type CreateMysupplierMutation = {
|
|
|
9456
9462
|
description?: string | null;
|
|
9457
9463
|
industrySector?: {
|
|
9458
9464
|
__typename?: 'IndustrySectorObject';
|
|
9459
|
-
id
|
|
9460
|
-
|
|
9461
|
-
|
|
9462
|
-
|
|
9465
|
+
id?: string | null;
|
|
9466
|
+
pk?: string | null;
|
|
9467
|
+
name?: string | null;
|
|
9468
|
+
description?: string | null;
|
|
9469
|
+
orderBy?: number | null;
|
|
9463
9470
|
} | null;
|
|
9464
9471
|
} | null;
|
|
9465
9472
|
industries?: Array<{
|
|
@@ -9475,10 +9482,11 @@ export type CreateMysupplierMutation = {
|
|
|
9475
9482
|
description?: string | null;
|
|
9476
9483
|
industrySector?: {
|
|
9477
9484
|
__typename?: 'IndustrySectorObject';
|
|
9478
|
-
id
|
|
9479
|
-
|
|
9480
|
-
|
|
9481
|
-
|
|
9485
|
+
id?: string | null;
|
|
9486
|
+
pk?: string | null;
|
|
9487
|
+
name?: string | null;
|
|
9488
|
+
description?: string | null;
|
|
9489
|
+
orderBy?: number | null;
|
|
9482
9490
|
} | null;
|
|
9483
9491
|
} | null;
|
|
9484
9492
|
} | null> | null;
|
|
@@ -10595,10 +10603,11 @@ export type CreateSupplierlistMutation = {
|
|
|
10595
10603
|
description?: string | null;
|
|
10596
10604
|
industrySector?: {
|
|
10597
10605
|
__typename?: 'IndustrySectorObject';
|
|
10598
|
-
id
|
|
10599
|
-
|
|
10600
|
-
|
|
10601
|
-
|
|
10606
|
+
id?: string | null;
|
|
10607
|
+
pk?: string | null;
|
|
10608
|
+
name?: string | null;
|
|
10609
|
+
description?: string | null;
|
|
10610
|
+
orderBy?: number | null;
|
|
10602
10611
|
} | null;
|
|
10603
10612
|
} | null;
|
|
10604
10613
|
} | null> | null;
|
|
@@ -10621,10 +10630,11 @@ export type CreateSupplierlistMutation = {
|
|
|
10621
10630
|
description?: string | null;
|
|
10622
10631
|
industrySector?: {
|
|
10623
10632
|
__typename?: 'IndustrySectorObject';
|
|
10624
|
-
id
|
|
10625
|
-
|
|
10626
|
-
|
|
10627
|
-
|
|
10633
|
+
id?: string | null;
|
|
10634
|
+
pk?: string | null;
|
|
10635
|
+
name?: string | null;
|
|
10636
|
+
description?: string | null;
|
|
10637
|
+
orderBy?: number | null;
|
|
10628
10638
|
} | null;
|
|
10629
10639
|
} | null;
|
|
10630
10640
|
industries?: Array<{
|
|
@@ -10640,10 +10650,11 @@ export type CreateSupplierlistMutation = {
|
|
|
10640
10650
|
description?: string | null;
|
|
10641
10651
|
industrySector?: {
|
|
10642
10652
|
__typename?: 'IndustrySectorObject';
|
|
10643
|
-
id
|
|
10644
|
-
|
|
10645
|
-
|
|
10646
|
-
|
|
10653
|
+
id?: string | null;
|
|
10654
|
+
pk?: string | null;
|
|
10655
|
+
name?: string | null;
|
|
10656
|
+
description?: string | null;
|
|
10657
|
+
orderBy?: number | null;
|
|
10647
10658
|
} | null;
|
|
10648
10659
|
} | null;
|
|
10649
10660
|
} | null> | null;
|
|
@@ -15178,10 +15189,11 @@ export type UpdateCompanyMutation = {
|
|
|
15178
15189
|
description?: string | null;
|
|
15179
15190
|
industrySector?: {
|
|
15180
15191
|
__typename?: 'IndustrySectorObject';
|
|
15181
|
-
id
|
|
15182
|
-
|
|
15183
|
-
|
|
15184
|
-
|
|
15192
|
+
id?: string | null;
|
|
15193
|
+
pk?: string | null;
|
|
15194
|
+
name?: string | null;
|
|
15195
|
+
description?: string | null;
|
|
15196
|
+
orderBy?: number | null;
|
|
15185
15197
|
} | null;
|
|
15186
15198
|
} | null;
|
|
15187
15199
|
} | null> | null;
|
|
@@ -15214,10 +15226,11 @@ export type UpdateCompanyMutation = {
|
|
|
15214
15226
|
description?: string | null;
|
|
15215
15227
|
industrySector?: {
|
|
15216
15228
|
__typename?: 'IndustrySectorObject';
|
|
15217
|
-
id
|
|
15218
|
-
|
|
15219
|
-
|
|
15220
|
-
|
|
15229
|
+
id?: string | null;
|
|
15230
|
+
pk?: string | null;
|
|
15231
|
+
name?: string | null;
|
|
15232
|
+
description?: string | null;
|
|
15233
|
+
orderBy?: number | null;
|
|
15221
15234
|
} | null;
|
|
15222
15235
|
} | null;
|
|
15223
15236
|
industries?: Array<{
|
|
@@ -15233,10 +15246,11 @@ export type UpdateCompanyMutation = {
|
|
|
15233
15246
|
description?: string | null;
|
|
15234
15247
|
industrySector?: {
|
|
15235
15248
|
__typename?: 'IndustrySectorObject';
|
|
15236
|
-
id
|
|
15237
|
-
|
|
15238
|
-
|
|
15239
|
-
|
|
15249
|
+
id?: string | null;
|
|
15250
|
+
pk?: string | null;
|
|
15251
|
+
name?: string | null;
|
|
15252
|
+
description?: string | null;
|
|
15253
|
+
orderBy?: number | null;
|
|
15240
15254
|
} | null;
|
|
15241
15255
|
} | null;
|
|
15242
15256
|
} | null> | null;
|
|
@@ -16233,10 +16247,11 @@ export type UpdateMysupplierMutation = {
|
|
|
16233
16247
|
description?: string | null;
|
|
16234
16248
|
industrySector?: {
|
|
16235
16249
|
__typename?: 'IndustrySectorObject';
|
|
16236
|
-
id
|
|
16237
|
-
|
|
16238
|
-
|
|
16239
|
-
|
|
16250
|
+
id?: string | null;
|
|
16251
|
+
pk?: string | null;
|
|
16252
|
+
name?: string | null;
|
|
16253
|
+
description?: string | null;
|
|
16254
|
+
orderBy?: number | null;
|
|
16240
16255
|
} | null;
|
|
16241
16256
|
} | null;
|
|
16242
16257
|
} | null> | null;
|
|
@@ -16263,10 +16278,11 @@ export type UpdateMysupplierMutation = {
|
|
|
16263
16278
|
description?: string | null;
|
|
16264
16279
|
industrySector?: {
|
|
16265
16280
|
__typename?: 'IndustrySectorObject';
|
|
16266
|
-
id
|
|
16267
|
-
|
|
16268
|
-
|
|
16269
|
-
|
|
16281
|
+
id?: string | null;
|
|
16282
|
+
pk?: string | null;
|
|
16283
|
+
name?: string | null;
|
|
16284
|
+
description?: string | null;
|
|
16285
|
+
orderBy?: number | null;
|
|
16270
16286
|
} | null;
|
|
16271
16287
|
} | null;
|
|
16272
16288
|
industries?: Array<{
|
|
@@ -16282,10 +16298,11 @@ export type UpdateMysupplierMutation = {
|
|
|
16282
16298
|
description?: string | null;
|
|
16283
16299
|
industrySector?: {
|
|
16284
16300
|
__typename?: 'IndustrySectorObject';
|
|
16285
|
-
id
|
|
16286
|
-
|
|
16287
|
-
|
|
16288
|
-
|
|
16301
|
+
id?: string | null;
|
|
16302
|
+
pk?: string | null;
|
|
16303
|
+
name?: string | null;
|
|
16304
|
+
description?: string | null;
|
|
16305
|
+
orderBy?: number | null;
|
|
16289
16306
|
} | null;
|
|
16290
16307
|
} | null;
|
|
16291
16308
|
} | null> | null;
|
|
@@ -17394,10 +17411,11 @@ export type UpdateSupplierlistMutation = {
|
|
|
17394
17411
|
description?: string | null;
|
|
17395
17412
|
industrySector?: {
|
|
17396
17413
|
__typename?: 'IndustrySectorObject';
|
|
17397
|
-
id
|
|
17398
|
-
|
|
17399
|
-
|
|
17400
|
-
|
|
17414
|
+
id?: string | null;
|
|
17415
|
+
pk?: string | null;
|
|
17416
|
+
name?: string | null;
|
|
17417
|
+
description?: string | null;
|
|
17418
|
+
orderBy?: number | null;
|
|
17401
17419
|
} | null;
|
|
17402
17420
|
} | null;
|
|
17403
17421
|
} | null> | null;
|
|
@@ -17420,10 +17438,11 @@ export type UpdateSupplierlistMutation = {
|
|
|
17420
17438
|
description?: string | null;
|
|
17421
17439
|
industrySector?: {
|
|
17422
17440
|
__typename?: 'IndustrySectorObject';
|
|
17423
|
-
id
|
|
17424
|
-
|
|
17425
|
-
|
|
17426
|
-
|
|
17441
|
+
id?: string | null;
|
|
17442
|
+
pk?: string | null;
|
|
17443
|
+
name?: string | null;
|
|
17444
|
+
description?: string | null;
|
|
17445
|
+
orderBy?: number | null;
|
|
17427
17446
|
} | null;
|
|
17428
17447
|
} | null;
|
|
17429
17448
|
industries?: Array<{
|
|
@@ -17439,10 +17458,11 @@ export type UpdateSupplierlistMutation = {
|
|
|
17439
17458
|
description?: string | null;
|
|
17440
17459
|
industrySector?: {
|
|
17441
17460
|
__typename?: 'IndustrySectorObject';
|
|
17442
|
-
id
|
|
17443
|
-
|
|
17444
|
-
|
|
17445
|
-
|
|
17461
|
+
id?: string | null;
|
|
17462
|
+
pk?: string | null;
|
|
17463
|
+
name?: string | null;
|
|
17464
|
+
description?: string | null;
|
|
17465
|
+
orderBy?: number | null;
|
|
17446
17466
|
} | null;
|
|
17447
17467
|
} | null;
|
|
17448
17468
|
} | null> | null;
|
|
@@ -18973,6 +18993,7 @@ export type CampaignContactsQuery = {
|
|
|
18973
18993
|
populatedBody?: string | null;
|
|
18974
18994
|
replyCount?: number | null;
|
|
18975
18995
|
isRemoved?: boolean | null;
|
|
18996
|
+
sendStatus?: string | null;
|
|
18976
18997
|
lastContactedBy?: {
|
|
18977
18998
|
__typename?: 'UserType';
|
|
18978
18999
|
id?: string | null;
|
|
@@ -19885,6 +19906,7 @@ export type CombinedCampaignContactsQuery = {
|
|
|
19885
19906
|
populatedBody?: string | null;
|
|
19886
19907
|
replyCount?: number | null;
|
|
19887
19908
|
isRemoved?: boolean | null;
|
|
19909
|
+
sendStatus?: string | null;
|
|
19888
19910
|
lastContactedBy?: {
|
|
19889
19911
|
__typename?: 'UserType';
|
|
19890
19912
|
id?: string | null;
|
|
@@ -21328,10 +21350,11 @@ export type CompaniesQuery = {
|
|
|
21328
21350
|
description?: string | null;
|
|
21329
21351
|
industrySector?: {
|
|
21330
21352
|
__typename?: 'IndustrySectorObject';
|
|
21331
|
-
id
|
|
21332
|
-
|
|
21333
|
-
|
|
21334
|
-
|
|
21353
|
+
id?: string | null;
|
|
21354
|
+
pk?: string | null;
|
|
21355
|
+
name?: string | null;
|
|
21356
|
+
description?: string | null;
|
|
21357
|
+
orderBy?: number | null;
|
|
21335
21358
|
} | null;
|
|
21336
21359
|
} | null;
|
|
21337
21360
|
} | null> | null;
|
|
@@ -21364,10 +21387,11 @@ export type CompaniesQuery = {
|
|
|
21364
21387
|
description?: string | null;
|
|
21365
21388
|
industrySector?: {
|
|
21366
21389
|
__typename?: 'IndustrySectorObject';
|
|
21367
|
-
id
|
|
21368
|
-
|
|
21369
|
-
|
|
21370
|
-
|
|
21390
|
+
id?: string | null;
|
|
21391
|
+
pk?: string | null;
|
|
21392
|
+
name?: string | null;
|
|
21393
|
+
description?: string | null;
|
|
21394
|
+
orderBy?: number | null;
|
|
21371
21395
|
} | null;
|
|
21372
21396
|
} | null;
|
|
21373
21397
|
industries?: Array<{
|
|
@@ -21383,10 +21407,11 @@ export type CompaniesQuery = {
|
|
|
21383
21407
|
description?: string | null;
|
|
21384
21408
|
industrySector?: {
|
|
21385
21409
|
__typename?: 'IndustrySectorObject';
|
|
21386
|
-
id
|
|
21387
|
-
|
|
21388
|
-
|
|
21389
|
-
|
|
21410
|
+
id?: string | null;
|
|
21411
|
+
pk?: string | null;
|
|
21412
|
+
name?: string | null;
|
|
21413
|
+
description?: string | null;
|
|
21414
|
+
orderBy?: number | null;
|
|
21390
21415
|
} | null;
|
|
21391
21416
|
} | null;
|
|
21392
21417
|
} | null> | null;
|
|
@@ -22035,10 +22060,11 @@ export type CompanyQuery = {
|
|
|
22035
22060
|
description?: string | null;
|
|
22036
22061
|
industrySector?: {
|
|
22037
22062
|
__typename?: 'IndustrySectorObject';
|
|
22038
|
-
id
|
|
22039
|
-
|
|
22040
|
-
|
|
22041
|
-
|
|
22063
|
+
id?: string | null;
|
|
22064
|
+
pk?: string | null;
|
|
22065
|
+
name?: string | null;
|
|
22066
|
+
description?: string | null;
|
|
22067
|
+
orderBy?: number | null;
|
|
22042
22068
|
} | null;
|
|
22043
22069
|
} | null;
|
|
22044
22070
|
} | null> | null;
|
|
@@ -22071,10 +22097,11 @@ export type CompanyQuery = {
|
|
|
22071
22097
|
description?: string | null;
|
|
22072
22098
|
industrySector?: {
|
|
22073
22099
|
__typename?: 'IndustrySectorObject';
|
|
22074
|
-
id
|
|
22075
|
-
|
|
22076
|
-
|
|
22077
|
-
|
|
22100
|
+
id?: string | null;
|
|
22101
|
+
pk?: string | null;
|
|
22102
|
+
name?: string | null;
|
|
22103
|
+
description?: string | null;
|
|
22104
|
+
orderBy?: number | null;
|
|
22078
22105
|
} | null;
|
|
22079
22106
|
} | null;
|
|
22080
22107
|
industries?: Array<{
|
|
@@ -22090,10 +22117,11 @@ export type CompanyQuery = {
|
|
|
22090
22117
|
description?: string | null;
|
|
22091
22118
|
industrySector?: {
|
|
22092
22119
|
__typename?: 'IndustrySectorObject';
|
|
22093
|
-
id
|
|
22094
|
-
|
|
22095
|
-
|
|
22096
|
-
|
|
22120
|
+
id?: string | null;
|
|
22121
|
+
pk?: string | null;
|
|
22122
|
+
name?: string | null;
|
|
22123
|
+
description?: string | null;
|
|
22124
|
+
orderBy?: number | null;
|
|
22097
22125
|
} | null;
|
|
22098
22126
|
} | null;
|
|
22099
22127
|
} | null> | null;
|
|
@@ -22789,10 +22817,11 @@ export type CompanyNameSearchQuery = {
|
|
|
22789
22817
|
description?: string | null;
|
|
22790
22818
|
industrySector?: {
|
|
22791
22819
|
__typename?: 'IndustrySectorObject';
|
|
22792
|
-
id
|
|
22793
|
-
|
|
22794
|
-
|
|
22795
|
-
|
|
22820
|
+
id?: string | null;
|
|
22821
|
+
pk?: string | null;
|
|
22822
|
+
name?: string | null;
|
|
22823
|
+
description?: string | null;
|
|
22824
|
+
orderBy?: number | null;
|
|
22796
22825
|
} | null;
|
|
22797
22826
|
} | null;
|
|
22798
22827
|
} | null> | null;
|
|
@@ -22825,10 +22854,11 @@ export type CompanyNameSearchQuery = {
|
|
|
22825
22854
|
description?: string | null;
|
|
22826
22855
|
industrySector?: {
|
|
22827
22856
|
__typename?: 'IndustrySectorObject';
|
|
22828
|
-
id
|
|
22829
|
-
|
|
22830
|
-
|
|
22831
|
-
|
|
22857
|
+
id?: string | null;
|
|
22858
|
+
pk?: string | null;
|
|
22859
|
+
name?: string | null;
|
|
22860
|
+
description?: string | null;
|
|
22861
|
+
orderBy?: number | null;
|
|
22832
22862
|
} | null;
|
|
22833
22863
|
} | null;
|
|
22834
22864
|
industries?: Array<{
|
|
@@ -22844,10 +22874,11 @@ export type CompanyNameSearchQuery = {
|
|
|
22844
22874
|
description?: string | null;
|
|
22845
22875
|
industrySector?: {
|
|
22846
22876
|
__typename?: 'IndustrySectorObject';
|
|
22847
|
-
id
|
|
22848
|
-
|
|
22849
|
-
|
|
22850
|
-
|
|
22877
|
+
id?: string | null;
|
|
22878
|
+
pk?: string | null;
|
|
22879
|
+
name?: string | null;
|
|
22880
|
+
description?: string | null;
|
|
22881
|
+
orderBy?: number | null;
|
|
22851
22882
|
} | null;
|
|
22852
22883
|
} | null;
|
|
22853
22884
|
} | null> | null;
|
|
@@ -23852,10 +23883,11 @@ export type CompanySearchQuery = {
|
|
|
23852
23883
|
description?: string | null;
|
|
23853
23884
|
industrySector?: {
|
|
23854
23885
|
__typename?: 'IndustrySectorObject';
|
|
23855
|
-
id
|
|
23856
|
-
|
|
23857
|
-
|
|
23858
|
-
|
|
23886
|
+
id?: string | null;
|
|
23887
|
+
pk?: string | null;
|
|
23888
|
+
name?: string | null;
|
|
23889
|
+
description?: string | null;
|
|
23890
|
+
orderBy?: number | null;
|
|
23859
23891
|
} | null;
|
|
23860
23892
|
} | null;
|
|
23861
23893
|
} | null> | null;
|
|
@@ -23888,10 +23920,11 @@ export type CompanySearchQuery = {
|
|
|
23888
23920
|
description?: string | null;
|
|
23889
23921
|
industrySector?: {
|
|
23890
23922
|
__typename?: 'IndustrySectorObject';
|
|
23891
|
-
id
|
|
23892
|
-
|
|
23893
|
-
|
|
23894
|
-
|
|
23923
|
+
id?: string | null;
|
|
23924
|
+
pk?: string | null;
|
|
23925
|
+
name?: string | null;
|
|
23926
|
+
description?: string | null;
|
|
23927
|
+
orderBy?: number | null;
|
|
23895
23928
|
} | null;
|
|
23896
23929
|
} | null;
|
|
23897
23930
|
industries?: Array<{
|
|
@@ -23907,10 +23940,11 @@ export type CompanySearchQuery = {
|
|
|
23907
23940
|
description?: string | null;
|
|
23908
23941
|
industrySector?: {
|
|
23909
23942
|
__typename?: 'IndustrySectorObject';
|
|
23910
|
-
id
|
|
23911
|
-
|
|
23912
|
-
|
|
23913
|
-
|
|
23943
|
+
id?: string | null;
|
|
23944
|
+
pk?: string | null;
|
|
23945
|
+
name?: string | null;
|
|
23946
|
+
description?: string | null;
|
|
23947
|
+
orderBy?: number | null;
|
|
23914
23948
|
} | null;
|
|
23915
23949
|
} | null;
|
|
23916
23950
|
} | null> | null;
|
|
@@ -24616,10 +24650,11 @@ export type IndustrySectorsQuery = {
|
|
|
24616
24650
|
__typename?: 'Query';
|
|
24617
24651
|
industrySectors?: Array<{
|
|
24618
24652
|
__typename?: 'IndustrySectorObject';
|
|
24619
|
-
id
|
|
24620
|
-
|
|
24621
|
-
|
|
24622
|
-
|
|
24653
|
+
id?: string | null;
|
|
24654
|
+
pk?: string | null;
|
|
24655
|
+
name?: string | null;
|
|
24656
|
+
description?: string | null;
|
|
24657
|
+
orderBy?: number | null;
|
|
24623
24658
|
} | null> | null;
|
|
24624
24659
|
};
|
|
24625
24660
|
export type IndustryTypesQueryVariables = Exact<{
|
|
@@ -24635,10 +24670,11 @@ export type IndustryTypesQuery = {
|
|
|
24635
24670
|
description?: string | null;
|
|
24636
24671
|
industrySector?: {
|
|
24637
24672
|
__typename?: 'IndustrySectorObject';
|
|
24638
|
-
id
|
|
24639
|
-
|
|
24640
|
-
|
|
24641
|
-
|
|
24673
|
+
id?: string | null;
|
|
24674
|
+
pk?: string | null;
|
|
24675
|
+
name?: string | null;
|
|
24676
|
+
description?: string | null;
|
|
24677
|
+
orderBy?: number | null;
|
|
24642
24678
|
} | null;
|
|
24643
24679
|
} | null> | null;
|
|
24644
24680
|
};
|
|
@@ -25383,10 +25419,11 @@ export type MysupplierQuery = {
|
|
|
25383
25419
|
description?: string | null;
|
|
25384
25420
|
industrySector?: {
|
|
25385
25421
|
__typename?: 'IndustrySectorObject';
|
|
25386
|
-
id
|
|
25387
|
-
|
|
25388
|
-
|
|
25389
|
-
|
|
25422
|
+
id?: string | null;
|
|
25423
|
+
pk?: string | null;
|
|
25424
|
+
name?: string | null;
|
|
25425
|
+
description?: string | null;
|
|
25426
|
+
orderBy?: number | null;
|
|
25390
25427
|
} | null;
|
|
25391
25428
|
} | null;
|
|
25392
25429
|
} | null> | null;
|
|
@@ -25413,10 +25450,11 @@ export type MysupplierQuery = {
|
|
|
25413
25450
|
description?: string | null;
|
|
25414
25451
|
industrySector?: {
|
|
25415
25452
|
__typename?: 'IndustrySectorObject';
|
|
25416
|
-
id
|
|
25417
|
-
|
|
25418
|
-
|
|
25419
|
-
|
|
25453
|
+
id?: string | null;
|
|
25454
|
+
pk?: string | null;
|
|
25455
|
+
name?: string | null;
|
|
25456
|
+
description?: string | null;
|
|
25457
|
+
orderBy?: number | null;
|
|
25420
25458
|
} | null;
|
|
25421
25459
|
} | null;
|
|
25422
25460
|
industries?: Array<{
|
|
@@ -25432,10 +25470,11 @@ export type MysupplierQuery = {
|
|
|
25432
25470
|
description?: string | null;
|
|
25433
25471
|
industrySector?: {
|
|
25434
25472
|
__typename?: 'IndustrySectorObject';
|
|
25435
|
-
id
|
|
25436
|
-
|
|
25437
|
-
|
|
25438
|
-
|
|
25473
|
+
id?: string | null;
|
|
25474
|
+
pk?: string | null;
|
|
25475
|
+
name?: string | null;
|
|
25476
|
+
description?: string | null;
|
|
25477
|
+
orderBy?: number | null;
|
|
25439
25478
|
} | null;
|
|
25440
25479
|
} | null;
|
|
25441
25480
|
} | null> | null;
|
|
@@ -26082,10 +26121,11 @@ export type MysupplierListQuery = {
|
|
|
26082
26121
|
description?: string | null;
|
|
26083
26122
|
industrySector?: {
|
|
26084
26123
|
__typename?: 'IndustrySectorObject';
|
|
26085
|
-
id
|
|
26086
|
-
|
|
26087
|
-
|
|
26088
|
-
|
|
26124
|
+
id?: string | null;
|
|
26125
|
+
pk?: string | null;
|
|
26126
|
+
name?: string | null;
|
|
26127
|
+
description?: string | null;
|
|
26128
|
+
orderBy?: number | null;
|
|
26089
26129
|
} | null;
|
|
26090
26130
|
} | null;
|
|
26091
26131
|
} | null> | null;
|
|
@@ -26112,10 +26152,11 @@ export type MysupplierListQuery = {
|
|
|
26112
26152
|
description?: string | null;
|
|
26113
26153
|
industrySector?: {
|
|
26114
26154
|
__typename?: 'IndustrySectorObject';
|
|
26115
|
-
id
|
|
26116
|
-
|
|
26117
|
-
|
|
26118
|
-
|
|
26155
|
+
id?: string | null;
|
|
26156
|
+
pk?: string | null;
|
|
26157
|
+
name?: string | null;
|
|
26158
|
+
description?: string | null;
|
|
26159
|
+
orderBy?: number | null;
|
|
26119
26160
|
} | null;
|
|
26120
26161
|
} | null;
|
|
26121
26162
|
industries?: Array<{
|
|
@@ -26131,10 +26172,11 @@ export type MysupplierListQuery = {
|
|
|
26131
26172
|
description?: string | null;
|
|
26132
26173
|
industrySector?: {
|
|
26133
26174
|
__typename?: 'IndustrySectorObject';
|
|
26134
|
-
id
|
|
26135
|
-
|
|
26136
|
-
|
|
26137
|
-
|
|
26175
|
+
id?: string | null;
|
|
26176
|
+
pk?: string | null;
|
|
26177
|
+
name?: string | null;
|
|
26178
|
+
description?: string | null;
|
|
26179
|
+
orderBy?: number | null;
|
|
26138
26180
|
} | null;
|
|
26139
26181
|
} | null;
|
|
26140
26182
|
} | null> | null;
|
|
@@ -27164,10 +27206,11 @@ export type RecentHistoryQuery = {
|
|
|
27164
27206
|
description?: string | null;
|
|
27165
27207
|
industrySector?: {
|
|
27166
27208
|
__typename?: 'IndustrySectorObject';
|
|
27167
|
-
id
|
|
27168
|
-
|
|
27169
|
-
|
|
27170
|
-
|
|
27209
|
+
id?: string | null;
|
|
27210
|
+
pk?: string | null;
|
|
27211
|
+
name?: string | null;
|
|
27212
|
+
description?: string | null;
|
|
27213
|
+
orderBy?: number | null;
|
|
27171
27214
|
} | null;
|
|
27172
27215
|
} | null;
|
|
27173
27216
|
} | null> | null;
|
|
@@ -27200,10 +27243,11 @@ export type RecentHistoryQuery = {
|
|
|
27200
27243
|
description?: string | null;
|
|
27201
27244
|
industrySector?: {
|
|
27202
27245
|
__typename?: 'IndustrySectorObject';
|
|
27203
|
-
id
|
|
27204
|
-
|
|
27205
|
-
|
|
27206
|
-
|
|
27246
|
+
id?: string | null;
|
|
27247
|
+
pk?: string | null;
|
|
27248
|
+
name?: string | null;
|
|
27249
|
+
description?: string | null;
|
|
27250
|
+
orderBy?: number | null;
|
|
27207
27251
|
} | null;
|
|
27208
27252
|
} | null;
|
|
27209
27253
|
industries?: Array<{
|
|
@@ -27219,10 +27263,11 @@ export type RecentHistoryQuery = {
|
|
|
27219
27263
|
description?: string | null;
|
|
27220
27264
|
industrySector?: {
|
|
27221
27265
|
__typename?: 'IndustrySectorObject';
|
|
27222
|
-
id
|
|
27223
|
-
|
|
27224
|
-
|
|
27225
|
-
|
|
27266
|
+
id?: string | null;
|
|
27267
|
+
pk?: string | null;
|
|
27268
|
+
name?: string | null;
|
|
27269
|
+
description?: string | null;
|
|
27270
|
+
orderBy?: number | null;
|
|
27226
27271
|
} | null;
|
|
27227
27272
|
} | null;
|
|
27228
27273
|
} | null> | null;
|
|
@@ -29082,10 +29127,11 @@ export type SupplierQuery = {
|
|
|
29082
29127
|
description?: string | null;
|
|
29083
29128
|
industrySector?: {
|
|
29084
29129
|
__typename?: 'IndustrySectorObject';
|
|
29085
|
-
id
|
|
29086
|
-
|
|
29087
|
-
|
|
29088
|
-
|
|
29130
|
+
id?: string | null;
|
|
29131
|
+
pk?: string | null;
|
|
29132
|
+
name?: string | null;
|
|
29133
|
+
description?: string | null;
|
|
29134
|
+
orderBy?: number | null;
|
|
29089
29135
|
} | null;
|
|
29090
29136
|
} | null;
|
|
29091
29137
|
} | null> | null;
|
|
@@ -29118,10 +29164,11 @@ export type SupplierQuery = {
|
|
|
29118
29164
|
description?: string | null;
|
|
29119
29165
|
industrySector?: {
|
|
29120
29166
|
__typename?: 'IndustrySectorObject';
|
|
29121
|
-
id
|
|
29122
|
-
|
|
29123
|
-
|
|
29124
|
-
|
|
29167
|
+
id?: string | null;
|
|
29168
|
+
pk?: string | null;
|
|
29169
|
+
name?: string | null;
|
|
29170
|
+
description?: string | null;
|
|
29171
|
+
orderBy?: number | null;
|
|
29125
29172
|
} | null;
|
|
29126
29173
|
} | null;
|
|
29127
29174
|
industries?: Array<{
|
|
@@ -29137,10 +29184,11 @@ export type SupplierQuery = {
|
|
|
29137
29184
|
description?: string | null;
|
|
29138
29185
|
industrySector?: {
|
|
29139
29186
|
__typename?: 'IndustrySectorObject';
|
|
29140
|
-
id
|
|
29141
|
-
|
|
29142
|
-
|
|
29143
|
-
|
|
29187
|
+
id?: string | null;
|
|
29188
|
+
pk?: string | null;
|
|
29189
|
+
name?: string | null;
|
|
29190
|
+
description?: string | null;
|
|
29191
|
+
orderBy?: number | null;
|
|
29144
29192
|
} | null;
|
|
29145
29193
|
} | null;
|
|
29146
29194
|
} | null> | null;
|
|
@@ -29892,10 +29940,11 @@ export type SupplierlistQuery = {
|
|
|
29892
29940
|
description?: string | null;
|
|
29893
29941
|
industrySector?: {
|
|
29894
29942
|
__typename?: 'IndustrySectorObject';
|
|
29895
|
-
id
|
|
29896
|
-
|
|
29897
|
-
|
|
29898
|
-
|
|
29943
|
+
id?: string | null;
|
|
29944
|
+
pk?: string | null;
|
|
29945
|
+
name?: string | null;
|
|
29946
|
+
description?: string | null;
|
|
29947
|
+
orderBy?: number | null;
|
|
29899
29948
|
} | null;
|
|
29900
29949
|
} | null;
|
|
29901
29950
|
} | null> | null;
|
|
@@ -29918,10 +29967,11 @@ export type SupplierlistQuery = {
|
|
|
29918
29967
|
description?: string | null;
|
|
29919
29968
|
industrySector?: {
|
|
29920
29969
|
__typename?: 'IndustrySectorObject';
|
|
29921
|
-
id
|
|
29922
|
-
|
|
29923
|
-
|
|
29924
|
-
|
|
29970
|
+
id?: string | null;
|
|
29971
|
+
pk?: string | null;
|
|
29972
|
+
name?: string | null;
|
|
29973
|
+
description?: string | null;
|
|
29974
|
+
orderBy?: number | null;
|
|
29925
29975
|
} | null;
|
|
29926
29976
|
} | null;
|
|
29927
29977
|
industries?: Array<{
|
|
@@ -29937,10 +29987,11 @@ export type SupplierlistQuery = {
|
|
|
29937
29987
|
description?: string | null;
|
|
29938
29988
|
industrySector?: {
|
|
29939
29989
|
__typename?: 'IndustrySectorObject';
|
|
29940
|
-
id
|
|
29941
|
-
|
|
29942
|
-
|
|
29943
|
-
|
|
29990
|
+
id?: string | null;
|
|
29991
|
+
pk?: string | null;
|
|
29992
|
+
name?: string | null;
|
|
29993
|
+
description?: string | null;
|
|
29994
|
+
orderBy?: number | null;
|
|
29944
29995
|
} | null;
|
|
29945
29996
|
} | null;
|
|
29946
29997
|
} | null> | null;
|
|
@@ -30591,10 +30642,11 @@ export type SupplierlistListQuery = {
|
|
|
30591
30642
|
description?: string | null;
|
|
30592
30643
|
industrySector?: {
|
|
30593
30644
|
__typename?: 'IndustrySectorObject';
|
|
30594
|
-
id
|
|
30595
|
-
|
|
30596
|
-
|
|
30597
|
-
|
|
30645
|
+
id?: string | null;
|
|
30646
|
+
pk?: string | null;
|
|
30647
|
+
name?: string | null;
|
|
30648
|
+
description?: string | null;
|
|
30649
|
+
orderBy?: number | null;
|
|
30598
30650
|
} | null;
|
|
30599
30651
|
} | null;
|
|
30600
30652
|
} | null> | null;
|
|
@@ -30617,10 +30669,11 @@ export type SupplierlistListQuery = {
|
|
|
30617
30669
|
description?: string | null;
|
|
30618
30670
|
industrySector?: {
|
|
30619
30671
|
__typename?: 'IndustrySectorObject';
|
|
30620
|
-
id
|
|
30621
|
-
|
|
30622
|
-
|
|
30623
|
-
|
|
30672
|
+
id?: string | null;
|
|
30673
|
+
pk?: string | null;
|
|
30674
|
+
name?: string | null;
|
|
30675
|
+
description?: string | null;
|
|
30676
|
+
orderBy?: number | null;
|
|
30624
30677
|
} | null;
|
|
30625
30678
|
} | null;
|
|
30626
30679
|
industries?: Array<{
|
|
@@ -30636,10 +30689,11 @@ export type SupplierlistListQuery = {
|
|
|
30636
30689
|
description?: string | null;
|
|
30637
30690
|
industrySector?: {
|
|
30638
30691
|
__typename?: 'IndustrySectorObject';
|
|
30639
|
-
id
|
|
30640
|
-
|
|
30641
|
-
|
|
30642
|
-
|
|
30692
|
+
id?: string | null;
|
|
30693
|
+
pk?: string | null;
|
|
30694
|
+
name?: string | null;
|
|
30695
|
+
description?: string | null;
|
|
30696
|
+
orderBy?: number | null;
|
|
30643
30697
|
} | null;
|
|
30644
30698
|
} | null;
|
|
30645
30699
|
} | null> | null;
|
|
@@ -31402,10 +31456,11 @@ export type SuppliersQuery = {
|
|
|
31402
31456
|
description?: string | null;
|
|
31403
31457
|
industrySector?: {
|
|
31404
31458
|
__typename?: 'IndustrySectorObject';
|
|
31405
|
-
id
|
|
31406
|
-
|
|
31407
|
-
|
|
31408
|
-
|
|
31459
|
+
id?: string | null;
|
|
31460
|
+
pk?: string | null;
|
|
31461
|
+
name?: string | null;
|
|
31462
|
+
description?: string | null;
|
|
31463
|
+
orderBy?: number | null;
|
|
31409
31464
|
} | null;
|
|
31410
31465
|
} | null;
|
|
31411
31466
|
} | null> | null;
|
|
@@ -31438,10 +31493,11 @@ export type SuppliersQuery = {
|
|
|
31438
31493
|
description?: string | null;
|
|
31439
31494
|
industrySector?: {
|
|
31440
31495
|
__typename?: 'IndustrySectorObject';
|
|
31441
|
-
id
|
|
31442
|
-
|
|
31443
|
-
|
|
31444
|
-
|
|
31496
|
+
id?: string | null;
|
|
31497
|
+
pk?: string | null;
|
|
31498
|
+
name?: string | null;
|
|
31499
|
+
description?: string | null;
|
|
31500
|
+
orderBy?: number | null;
|
|
31445
31501
|
} | null;
|
|
31446
31502
|
} | null;
|
|
31447
31503
|
industries?: Array<{
|
|
@@ -31457,10 +31513,11 @@ export type SuppliersQuery = {
|
|
|
31457
31513
|
description?: string | null;
|
|
31458
31514
|
industrySector?: {
|
|
31459
31515
|
__typename?: 'IndustrySectorObject';
|
|
31460
|
-
id
|
|
31461
|
-
|
|
31462
|
-
|
|
31463
|
-
|
|
31516
|
+
id?: string | null;
|
|
31517
|
+
pk?: string | null;
|
|
31518
|
+
name?: string | null;
|
|
31519
|
+
description?: string | null;
|
|
31520
|
+
orderBy?: number | null;
|
|
31464
31521
|
} | null;
|
|
31465
31522
|
} | null;
|
|
31466
31523
|
} | null> | null;
|