@salesforce/webapp-template-app-react-sample-b2x-experimental 1.116.4 → 1.116.6
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/CHANGELOG.md +16 -0
- package/dist/force-app/main/default/data/Property__c.json +75 -25
- package/dist/force-app/main/default/objects/Property__c/fields/Coordinates__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +5 -0
- package/dist/force-app/main/default/permissionsets/Tenant_Maintenance_Access.permissionset-meta.xml +5 -0
- package/dist/force-app/main/default/webapplications/propertyrentalapp/index.html +1 -32
- package/dist/force-app/main/default/webapplications/propertyrentalapp/package.json +3 -3
- package/dist/force-app/main/default/webapplications/propertyrentalapp/src/api/graphql-operations-types.ts +380 -618
- package/dist/force-app/main/default/webapplications/propertyrentalapp/src/api/properties/propertyDetailGraphQL.ts +29 -0
- package/dist/force-app/main/default/webapplications/propertyrentalapp/src/api/properties/propertyListingGraphQL.ts +22 -0
- package/dist/force-app/main/default/webapplications/propertyrentalapp/src/app.tsx +1 -4
- package/dist/force-app/main/default/webapplications/propertyrentalapp/src/hooks/usePropertyMapMarkers.ts +49 -4
- package/dist/force-app/main/default/webapplications/propertyrentalapp/src/pages/PropertyDetails.tsx +7 -1
- package/dist/force-app/main/default/webapplications/propertyrentalapp/src/routes.tsx +2 -2
- package/dist/package-lock.json +2 -2
- package/dist/package.json +1 -1
- package/package.json +1 -1
|
@@ -281,7 +281,6 @@ export const AggregateOrderByStringFunction = {
|
|
|
281
281
|
Max: "MAX",
|
|
282
282
|
Min: "MIN",
|
|
283
283
|
} as const;
|
|
284
|
-
|
|
285
284
|
export type AggregateOrderByStringFunction =
|
|
286
285
|
(typeof AggregateOrderByStringFunction)[keyof typeof AggregateOrderByStringFunction];
|
|
287
286
|
|
|
@@ -414,21 +413,6 @@ export type Application__History_Filter = {
|
|
|
414
413
|
or?: InputMaybe<Array<InputMaybe<Application__History_Filter>>>;
|
|
415
414
|
};
|
|
416
415
|
|
|
417
|
-
export type Application__CUpdateInput = {
|
|
418
|
-
Application__c: Application__CUpdateRepresentation;
|
|
419
|
-
Id: Scalars["IdOrRef"]["input"];
|
|
420
|
-
};
|
|
421
|
-
|
|
422
|
-
export type Application__CUpdateRepresentation = {
|
|
423
|
-
Employment__c?: InputMaybe<Scalars["LongTextArea"]["input"]>;
|
|
424
|
-
OwnerId?: InputMaybe<Scalars["IdOrRef"]["input"]>;
|
|
425
|
-
Property__c?: InputMaybe<Scalars["IdOrRef"]["input"]>;
|
|
426
|
-
References__c?: InputMaybe<Scalars["LongTextArea"]["input"]>;
|
|
427
|
-
Start_Date__c?: InputMaybe<Scalars["Date"]["input"]>;
|
|
428
|
-
Status__c?: InputMaybe<Scalars["Picklist"]["input"]>;
|
|
429
|
-
User__c?: InputMaybe<Scalars["IdOrRef"]["input"]>;
|
|
430
|
-
};
|
|
431
|
-
|
|
432
416
|
export type Application__C_Filter = {
|
|
433
417
|
CreatedBy?: InputMaybe<User_Filter>;
|
|
434
418
|
CreatedById?: InputMaybe<IdOperators>;
|
|
@@ -456,42 +440,12 @@ export type Application__C_Filter = {
|
|
|
456
440
|
or?: InputMaybe<Array<InputMaybe<Application__C_Filter>>>;
|
|
457
441
|
};
|
|
458
442
|
|
|
459
|
-
export type Application__C_OrderBy = {
|
|
460
|
-
CreatedBy?: InputMaybe<User_OrderBy>;
|
|
461
|
-
CreatedById?: InputMaybe<OrderByClause>;
|
|
462
|
-
CreatedDate?: InputMaybe<OrderByClause>;
|
|
463
|
-
Employment__c?: InputMaybe<AggregateOrderByStringClause>;
|
|
464
|
-
Id?: InputMaybe<OrderByClause>;
|
|
465
|
-
IsDeleted?: InputMaybe<OrderByClause>;
|
|
466
|
-
LastActivityDate?: InputMaybe<OrderByClause>;
|
|
467
|
-
LastModifiedBy?: InputMaybe<User_OrderBy>;
|
|
468
|
-
LastModifiedById?: InputMaybe<OrderByClause>;
|
|
469
|
-
LastModifiedDate?: InputMaybe<OrderByClause>;
|
|
470
|
-
Name?: InputMaybe<OrderByClause>;
|
|
471
|
-
Owner?: InputMaybe<Application__C_Owner_OrderBys>;
|
|
472
|
-
OwnerId?: InputMaybe<OrderByClause>;
|
|
473
|
-
Property__c?: InputMaybe<OrderByClause>;
|
|
474
|
-
Property__r?: InputMaybe<Property__C_OrderBy>;
|
|
475
|
-
References__c?: InputMaybe<AggregateOrderByStringClause>;
|
|
476
|
-
Start_Date__c?: InputMaybe<OrderByClause>;
|
|
477
|
-
Status__c?: InputMaybe<OrderByClause>;
|
|
478
|
-
SystemModstamp?: InputMaybe<OrderByClause>;
|
|
479
|
-
User__c?: InputMaybe<OrderByClause>;
|
|
480
|
-
User__r?: InputMaybe<Contact_OrderBy>;
|
|
481
|
-
};
|
|
482
|
-
|
|
483
443
|
export type Application__C_Owner_Filters = {
|
|
484
444
|
Group?: InputMaybe<Group_Filter>;
|
|
485
445
|
Name?: InputMaybe<Name_Filter>;
|
|
486
446
|
User?: InputMaybe<User_Filter>;
|
|
487
447
|
};
|
|
488
448
|
|
|
489
|
-
export type Application__C_Owner_OrderBys = {
|
|
490
|
-
Group?: InputMaybe<Group_OrderBy>;
|
|
491
|
-
Name?: InputMaybe<Name_OrderBy>;
|
|
492
|
-
User?: InputMaybe<User_OrderBy>;
|
|
493
|
-
};
|
|
494
|
-
|
|
495
449
|
export type ApprovalSubmissionDetailHistory_Filter = {
|
|
496
450
|
ApprovalSubmissionDetail?: InputMaybe<ApprovalSubmissionDetail_Filter>;
|
|
497
451
|
ApprovalSubmissionDetailId?: InputMaybe<IdOperators>;
|
|
@@ -629,6 +583,7 @@ export type ApprovalSubmission_RelatedRecord_Filters = {
|
|
|
629
583
|
Customer?: InputMaybe<Customer_Filter>;
|
|
630
584
|
DataUseLegalBasis?: InputMaybe<DataUseLegalBasis_Filter>;
|
|
631
585
|
DataUsePurpose?: InputMaybe<DataUsePurpose_Filter>;
|
|
586
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
632
587
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
633
588
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
634
589
|
DuplicateRecordItem?: InputMaybe<DuplicateRecordItem_Filter>;
|
|
@@ -783,6 +738,7 @@ export type ApprovalWorkItem_RelatedRecord_Filters = {
|
|
|
783
738
|
Customer?: InputMaybe<Customer_Filter>;
|
|
784
739
|
DataUseLegalBasis?: InputMaybe<DataUseLegalBasis_Filter>;
|
|
785
740
|
DataUsePurpose?: InputMaybe<DataUsePurpose_Filter>;
|
|
741
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
786
742
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
787
743
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
788
744
|
DuplicateRecordItem?: InputMaybe<DuplicateRecordItem_Filter>;
|
|
@@ -1049,6 +1005,7 @@ export type Attachment_Parent_Filters = {
|
|
|
1049
1005
|
CommSubscriptionTiming?: InputMaybe<CommSubscriptionTiming_Filter>;
|
|
1050
1006
|
Contact?: InputMaybe<Contact_Filter>;
|
|
1051
1007
|
Contract?: InputMaybe<Contract_Filter>;
|
|
1008
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
1052
1009
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
1053
1010
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
1054
1011
|
EmailMessage?: InputMaybe<EmailMessage_Filter>;
|
|
@@ -2507,6 +2464,7 @@ export type ContentDocumentLink_LinkedEntity_Filters = {
|
|
|
2507
2464
|
Contact?: InputMaybe<Contact_Filter>;
|
|
2508
2465
|
ContentWorkspace?: InputMaybe<ContentWorkspace_Filter>;
|
|
2509
2466
|
Contract?: InputMaybe<Contract_Filter>;
|
|
2467
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
2510
2468
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
2511
2469
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
2512
2470
|
EmailMessage?: InputMaybe<EmailMessage_Filter>;
|
|
@@ -2523,6 +2481,7 @@ export type ContentDocumentLink_LinkedEntity_Filters = {
|
|
|
2523
2481
|
Maintenance_Request__c?: InputMaybe<Maintenance_Request__C_Filter>;
|
|
2524
2482
|
Maintenance_Worker__c?: InputMaybe<Maintenance_Worker__C_Filter>;
|
|
2525
2483
|
Name?: InputMaybe<Name_Filter>;
|
|
2484
|
+
Network?: InputMaybe<Network_Filter>;
|
|
2526
2485
|
Notification__c?: InputMaybe<Notification__C_Filter>;
|
|
2527
2486
|
Opportunity?: InputMaybe<Opportunity_Filter>;
|
|
2528
2487
|
Order?: InputMaybe<Order_Filter>;
|
|
@@ -2777,6 +2736,7 @@ export type ContentVersion_Filter = {
|
|
|
2777
2736
|
MalwareScanDate?: InputMaybe<DateTimeOperators>;
|
|
2778
2737
|
MalwareScanStatus?: InputMaybe<PicklistOperators>;
|
|
2779
2738
|
NegativeRatingCount?: InputMaybe<IntegerOperators>;
|
|
2739
|
+
NetworkId?: InputMaybe<IdOperators>;
|
|
2780
2740
|
Origin?: InputMaybe<PicklistOperators>;
|
|
2781
2741
|
Owner?: InputMaybe<User_Filter>;
|
|
2782
2742
|
OwnerId?: InputMaybe<IdOperators>;
|
|
@@ -2817,6 +2777,7 @@ export type ContentVersion_FirstPublishLocation_Filters = {
|
|
|
2817
2777
|
Contact?: InputMaybe<Contact_Filter>;
|
|
2818
2778
|
ContentWorkspace?: InputMaybe<ContentWorkspace_Filter>;
|
|
2819
2779
|
Contract?: InputMaybe<Contract_Filter>;
|
|
2780
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
2820
2781
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
2821
2782
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
2822
2783
|
EmailMessage?: InputMaybe<EmailMessage_Filter>;
|
|
@@ -2833,6 +2794,7 @@ export type ContentVersion_FirstPublishLocation_Filters = {
|
|
|
2833
2794
|
Maintenance_Request__c?: InputMaybe<Maintenance_Request__C_Filter>;
|
|
2834
2795
|
Maintenance_Worker__c?: InputMaybe<Maintenance_Worker__C_Filter>;
|
|
2835
2796
|
Name?: InputMaybe<Name_Filter>;
|
|
2797
|
+
Network?: InputMaybe<Network_Filter>;
|
|
2836
2798
|
Notification__c?: InputMaybe<Notification__C_Filter>;
|
|
2837
2799
|
Opportunity?: InputMaybe<Opportunity_Filter>;
|
|
2838
2800
|
Order?: InputMaybe<Order_Filter>;
|
|
@@ -3110,7 +3072,6 @@ export const DataType = {
|
|
|
3110
3072
|
Time: "TIME",
|
|
3111
3073
|
Url: "URL",
|
|
3112
3074
|
} as const;
|
|
3113
|
-
|
|
3114
3075
|
export type DataType = (typeof DataType)[keyof typeof DataType];
|
|
3115
3076
|
|
|
3116
3077
|
export type DataUseLegalBasisHistory_Filter = {
|
|
@@ -3245,7 +3206,6 @@ export const DateLiteral = {
|
|
|
3245
3206
|
Tomorrow: "TOMORROW",
|
|
3246
3207
|
Yesterday: "YESTERDAY",
|
|
3247
3208
|
} as const;
|
|
3248
|
-
|
|
3249
3209
|
export type DateLiteral = (typeof DateLiteral)[keyof typeof DateLiteral];
|
|
3250
3210
|
|
|
3251
3211
|
export type DateOperators = {
|
|
@@ -3340,6 +3300,58 @@ export type DateTimeOperators = {
|
|
|
3340
3300
|
nin?: InputMaybe<Array<InputMaybe<DateTimeInput>>>;
|
|
3341
3301
|
};
|
|
3342
3302
|
|
|
3303
|
+
export type DelegatedAccountHistory_Filter = {
|
|
3304
|
+
CreatedBy?: InputMaybe<User_Filter>;
|
|
3305
|
+
CreatedById?: InputMaybe<IdOperators>;
|
|
3306
|
+
CreatedDate?: InputMaybe<DateTimeOperators>;
|
|
3307
|
+
DataType?: InputMaybe<PicklistOperators>;
|
|
3308
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
3309
|
+
DelegatedAccountId?: InputMaybe<IdOperators>;
|
|
3310
|
+
Field?: InputMaybe<PicklistOperators>;
|
|
3311
|
+
Id?: InputMaybe<IdOperators>;
|
|
3312
|
+
IsDeleted?: InputMaybe<BooleanOperators>;
|
|
3313
|
+
NewvalNumber?: InputMaybe<DoubleOperators>;
|
|
3314
|
+
NewvalString?: InputMaybe<StringOperators>;
|
|
3315
|
+
OldvalNumber?: InputMaybe<DoubleOperators>;
|
|
3316
|
+
OldvalString?: InputMaybe<StringOperators>;
|
|
3317
|
+
and?: InputMaybe<Array<InputMaybe<DelegatedAccountHistory_Filter>>>;
|
|
3318
|
+
not?: InputMaybe<DelegatedAccountHistory_Filter>;
|
|
3319
|
+
or?: InputMaybe<Array<InputMaybe<DelegatedAccountHistory_Filter>>>;
|
|
3320
|
+
};
|
|
3321
|
+
|
|
3322
|
+
export type DelegatedAccount_Filter = {
|
|
3323
|
+
AccessManageUsers?: InputMaybe<BooleanOperators>;
|
|
3324
|
+
CreatedBy?: InputMaybe<User_Filter>;
|
|
3325
|
+
CreatedById?: InputMaybe<IdOperators>;
|
|
3326
|
+
CreatedDate?: InputMaybe<DateTimeOperators>;
|
|
3327
|
+
Id?: InputMaybe<IdOperators>;
|
|
3328
|
+
IsDeleted?: InputMaybe<BooleanOperators>;
|
|
3329
|
+
LastModifiedBy?: InputMaybe<User_Filter>;
|
|
3330
|
+
LastModifiedById?: InputMaybe<IdOperators>;
|
|
3331
|
+
LastModifiedDate?: InputMaybe<DateTimeOperators>;
|
|
3332
|
+
LastReferencedDate?: InputMaybe<DateTimeOperators>;
|
|
3333
|
+
LastViewedDate?: InputMaybe<DateTimeOperators>;
|
|
3334
|
+
ManagedBy?: InputMaybe<User_Filter>;
|
|
3335
|
+
ManagedById?: InputMaybe<IdOperators>;
|
|
3336
|
+
Name?: InputMaybe<StringOperators>;
|
|
3337
|
+
Owner?: InputMaybe<DelegatedAccount_Owner_Filters>;
|
|
3338
|
+
OwnerId?: InputMaybe<IdOperators>;
|
|
3339
|
+
Parent?: InputMaybe<Account_Filter>;
|
|
3340
|
+
ParentId?: InputMaybe<IdOperators>;
|
|
3341
|
+
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
3342
|
+
Target?: InputMaybe<Account_Filter>;
|
|
3343
|
+
TargetId?: InputMaybe<IdOperators>;
|
|
3344
|
+
and?: InputMaybe<Array<InputMaybe<DelegatedAccount_Filter>>>;
|
|
3345
|
+
not?: InputMaybe<DelegatedAccount_Filter>;
|
|
3346
|
+
or?: InputMaybe<Array<InputMaybe<DelegatedAccount_Filter>>>;
|
|
3347
|
+
};
|
|
3348
|
+
|
|
3349
|
+
export type DelegatedAccount_Owner_Filters = {
|
|
3350
|
+
Group?: InputMaybe<Group_Filter>;
|
|
3351
|
+
Name?: InputMaybe<Name_Filter>;
|
|
3352
|
+
User?: InputMaybe<User_Filter>;
|
|
3353
|
+
};
|
|
3354
|
+
|
|
3343
3355
|
export type DeleteEvent_Filter = {
|
|
3344
3356
|
DeletedBy?: InputMaybe<User_Filter>;
|
|
3345
3357
|
DeletedById?: InputMaybe<IdOperators>;
|
|
@@ -3468,6 +3480,11 @@ export type DevopsRequestInfo_Owner_Filters = {
|
|
|
3468
3480
|
User?: InputMaybe<User_Filter>;
|
|
3469
3481
|
};
|
|
3470
3482
|
|
|
3483
|
+
export type DistanceInput = {
|
|
3484
|
+
latitude: Scalars["Latitude"]["input"];
|
|
3485
|
+
longitude: Scalars["Longitude"]["input"];
|
|
3486
|
+
};
|
|
3487
|
+
|
|
3471
3488
|
export type DoubleOperators = {
|
|
3472
3489
|
eq?: InputMaybe<Scalars["Double"]["input"]>;
|
|
3473
3490
|
gt?: InputMaybe<Scalars["Double"]["input"]>;
|
|
@@ -3638,6 +3655,7 @@ export type EmailMessage_RelatedTo_Filters = {
|
|
|
3638
3655
|
CommSubscriptionConsent?: InputMaybe<CommSubscriptionConsent_Filter>;
|
|
3639
3656
|
ContactRequest?: InputMaybe<ContactRequest_Filter>;
|
|
3640
3657
|
Contract?: InputMaybe<Contract_Filter>;
|
|
3658
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
3641
3659
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
3642
3660
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
3643
3661
|
Image?: InputMaybe<Image_Filter>;
|
|
@@ -3930,6 +3948,7 @@ export type Event_What_Filters = {
|
|
|
3930
3948
|
CommSubscriptionConsent?: InputMaybe<CommSubscriptionConsent_Filter>;
|
|
3931
3949
|
ContactRequest?: InputMaybe<ContactRequest_Filter>;
|
|
3932
3950
|
Contract?: InputMaybe<Contract_Filter>;
|
|
3951
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
3933
3952
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
3934
3953
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
3935
3954
|
Image?: InputMaybe<Image_Filter>;
|
|
@@ -4003,6 +4022,7 @@ export type FeedItem_Filter = {
|
|
|
4003
4022
|
LastModifiedDate?: InputMaybe<DateTimeOperators>;
|
|
4004
4023
|
LikeCount?: InputMaybe<IntegerOperators>;
|
|
4005
4024
|
LinkUrl?: InputMaybe<UrlOperators>;
|
|
4025
|
+
NetworkScope?: InputMaybe<PicklistOperators>;
|
|
4006
4026
|
Parent?: InputMaybe<FeedItem_Parent_Filters>;
|
|
4007
4027
|
ParentId?: InputMaybe<IdOperators>;
|
|
4008
4028
|
RelatedRecordId?: InputMaybe<IdOperators>;
|
|
@@ -4011,6 +4031,7 @@ export type FeedItem_Filter = {
|
|
|
4011
4031
|
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
4012
4032
|
Title?: InputMaybe<StringOperators>;
|
|
4013
4033
|
Type?: InputMaybe<PicklistOperators>;
|
|
4034
|
+
Visibility?: InputMaybe<PicklistOperators>;
|
|
4014
4035
|
and?: InputMaybe<Array<InputMaybe<FeedItem_Filter>>>;
|
|
4015
4036
|
not?: InputMaybe<FeedItem_Filter>;
|
|
4016
4037
|
or?: InputMaybe<Array<InputMaybe<FeedItem_Filter>>>;
|
|
@@ -4035,6 +4056,7 @@ export type FeedItem_Parent_Filters = {
|
|
|
4035
4056
|
Contact?: InputMaybe<Contact_Filter>;
|
|
4036
4057
|
ContentDocument?: InputMaybe<ContentDocument_Filter>;
|
|
4037
4058
|
Contract?: InputMaybe<Contract_Filter>;
|
|
4059
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
4038
4060
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
4039
4061
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
4040
4062
|
EngagementChannelType?: InputMaybe<EngagementChannelType_Filter>;
|
|
@@ -4085,7 +4107,6 @@ export const FieldExtraTypeInfo = {
|
|
|
4085
4107
|
Richtextarea: "RICHTEXTAREA",
|
|
4086
4108
|
SwitchablePersonname: "SWITCHABLE_PERSONNAME",
|
|
4087
4109
|
} as const;
|
|
4088
|
-
|
|
4089
4110
|
export type FieldExtraTypeInfo = (typeof FieldExtraTypeInfo)[keyof typeof FieldExtraTypeInfo];
|
|
4090
4111
|
|
|
4091
4112
|
export type FieldPermissions_Filter = {
|
|
@@ -4406,6 +4427,7 @@ export type FlowOrchestrationWorkItem_RelatedRecord_Filters = {
|
|
|
4406
4427
|
Customer?: InputMaybe<Customer_Filter>;
|
|
4407
4428
|
DataUseLegalBasis?: InputMaybe<DataUseLegalBasis_Filter>;
|
|
4408
4429
|
DataUsePurpose?: InputMaybe<DataUsePurpose_Filter>;
|
|
4430
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
4409
4431
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
4410
4432
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
4411
4433
|
DuplicateRecordItem?: InputMaybe<DuplicateRecordItem_Filter>;
|
|
@@ -4859,6 +4881,18 @@ export type ForecastingType_Filter = {
|
|
|
4859
4881
|
or?: InputMaybe<Array<InputMaybe<ForecastingType_Filter>>>;
|
|
4860
4882
|
};
|
|
4861
4883
|
|
|
4884
|
+
export type GeolocationInput = {
|
|
4885
|
+
latitude: Scalars["Latitude"]["input"];
|
|
4886
|
+
longitude: Scalars["Longitude"]["input"];
|
|
4887
|
+
radius: Scalars["Float"]["input"];
|
|
4888
|
+
unit: Unit;
|
|
4889
|
+
};
|
|
4890
|
+
|
|
4891
|
+
export type GeolocationOperators = {
|
|
4892
|
+
gt?: InputMaybe<GeolocationInput>;
|
|
4893
|
+
lt?: InputMaybe<GeolocationInput>;
|
|
4894
|
+
};
|
|
4895
|
+
|
|
4862
4896
|
export type GroupMember_Filter = {
|
|
4863
4897
|
Group?: InputMaybe<Group_Filter>;
|
|
4864
4898
|
GroupId?: InputMaybe<IdOperators>;
|
|
@@ -5271,6 +5305,8 @@ export type JoinInput = {
|
|
|
5271
5305
|
DataUseLegalBasisHistory?: InputMaybe<DataUseLegalBasisHistory_Filter>;
|
|
5272
5306
|
DataUsePurpose?: InputMaybe<DataUsePurpose_Filter>;
|
|
5273
5307
|
DataUsePurposeHistory?: InputMaybe<DataUsePurposeHistory_Filter>;
|
|
5308
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
5309
|
+
DelegatedAccountHistory?: InputMaybe<DelegatedAccountHistory_Filter>;
|
|
5274
5310
|
DeleteEvent?: InputMaybe<DeleteEvent_Filter>;
|
|
5275
5311
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
5276
5312
|
DevopsEnvironmentHistory?: InputMaybe<DevopsEnvironmentHistory_Filter>;
|
|
@@ -5332,9 +5368,13 @@ export type JoinInput = {
|
|
|
5332
5368
|
ManagedContent?: InputMaybe<ManagedContent_Filter>;
|
|
5333
5369
|
ManagedContentPublishedUrl?: InputMaybe<ManagedContentPublishedUrl_Filter>;
|
|
5334
5370
|
ManagedContentVariant?: InputMaybe<ManagedContentVariant_Filter>;
|
|
5371
|
+
Network?: InputMaybe<Network_Filter>;
|
|
5372
|
+
NetworkDataCategory?: InputMaybe<NetworkDataCategory_Filter>;
|
|
5335
5373
|
Note?: InputMaybe<Note_Filter>;
|
|
5336
5374
|
Notification__c?: InputMaybe<Notification__C_Filter>;
|
|
5375
|
+
ObjectMetadataTag?: InputMaybe<ObjectMetadataTag_Filter>;
|
|
5337
5376
|
ObjectPermissions?: InputMaybe<ObjectPermissions_Filter>;
|
|
5377
|
+
ObjectRelatedUrl?: InputMaybe<ObjectRelatedUrl_Filter>;
|
|
5338
5378
|
Opportunity?: InputMaybe<Opportunity_Filter>;
|
|
5339
5379
|
OpportunityContactRole?: InputMaybe<OpportunityContactRole_Filter>;
|
|
5340
5380
|
OpportunityFieldHistory?: InputMaybe<OpportunityFieldHistory_Filter>;
|
|
@@ -5400,6 +5440,7 @@ export type JoinInput = {
|
|
|
5400
5440
|
ScorecardMetric?: InputMaybe<ScorecardMetric_Filter>;
|
|
5401
5441
|
SecurityHealthCheckAlertRecipient?: InputMaybe<SecurityHealthCheckAlertRecipient_Filter>;
|
|
5402
5442
|
SecurityHealthCheckResult?: InputMaybe<SecurityHealthCheckResult_Filter>;
|
|
5443
|
+
SelfSvcPortalTopic?: InputMaybe<SelfSvcPortalTopic_Filter>;
|
|
5403
5444
|
Seller?: InputMaybe<Seller_Filter>;
|
|
5404
5445
|
SellerHistory?: InputMaybe<SellerHistory_Filter>;
|
|
5405
5446
|
SetupAssistantStep?: InputMaybe<SetupAssistantStep_Filter>;
|
|
@@ -5485,7 +5526,6 @@ export const LayoutComponentType = {
|
|
|
5485
5526
|
ReportChart: "REPORT_CHART",
|
|
5486
5527
|
VisualforcePage: "VISUALFORCE_PAGE",
|
|
5487
5528
|
} as const;
|
|
5488
|
-
|
|
5489
5529
|
export type LayoutComponentType = (typeof LayoutComponentType)[keyof typeof LayoutComponentType];
|
|
5490
5530
|
|
|
5491
5531
|
export const LayoutMode = {
|
|
@@ -5493,14 +5533,12 @@ export const LayoutMode = {
|
|
|
5493
5533
|
Edit: "EDIT",
|
|
5494
5534
|
View: "VIEW",
|
|
5495
5535
|
} as const;
|
|
5496
|
-
|
|
5497
5536
|
export type LayoutMode = (typeof LayoutMode)[keyof typeof LayoutMode];
|
|
5498
5537
|
|
|
5499
5538
|
export const LayoutType = {
|
|
5500
5539
|
Compact: "COMPACT",
|
|
5501
5540
|
Full: "FULL",
|
|
5502
5541
|
} as const;
|
|
5503
|
-
|
|
5504
5542
|
export type LayoutType = (typeof LayoutType)[keyof typeof LayoutType];
|
|
5505
5543
|
|
|
5506
5544
|
export type LeadHistory_Filter = {
|
|
@@ -5837,27 +5875,6 @@ export type Maintenance_Request__History_Filter = {
|
|
|
5837
5875
|
or?: InputMaybe<Array<InputMaybe<Maintenance_Request__History_Filter>>>;
|
|
5838
5876
|
};
|
|
5839
5877
|
|
|
5840
|
-
export type Maintenance_Request__CUpdateInput = {
|
|
5841
|
-
Id: Scalars["IdOrRef"]["input"];
|
|
5842
|
-
Maintenance_Request__c: Maintenance_Request__CUpdateRepresentation;
|
|
5843
|
-
};
|
|
5844
|
-
|
|
5845
|
-
export type Maintenance_Request__CUpdateRepresentation = {
|
|
5846
|
-
Actual_Cost__c?: InputMaybe<Scalars["Currency"]["input"]>;
|
|
5847
|
-
Assigned_Worker__c?: InputMaybe<Scalars["IdOrRef"]["input"]>;
|
|
5848
|
-
Completed__c?: InputMaybe<Scalars["DateTime"]["input"]>;
|
|
5849
|
-
Description__c?: InputMaybe<Scalars["LongTextArea"]["input"]>;
|
|
5850
|
-
Est_Cost__c?: InputMaybe<Scalars["Currency"]["input"]>;
|
|
5851
|
-
OwnerId?: InputMaybe<Scalars["IdOrRef"]["input"]>;
|
|
5852
|
-
Priority__c?: InputMaybe<Scalars["Picklist"]["input"]>;
|
|
5853
|
-
Property__c?: InputMaybe<Scalars["IdOrRef"]["input"]>;
|
|
5854
|
-
Scheduled__c?: InputMaybe<Scalars["DateTime"]["input"]>;
|
|
5855
|
-
Status__c?: InputMaybe<Scalars["Picklist"]["input"]>;
|
|
5856
|
-
Tenant_Home__c?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
5857
|
-
Type__c?: InputMaybe<Scalars["Picklist"]["input"]>;
|
|
5858
|
-
User__c?: InputMaybe<Scalars["IdOrRef"]["input"]>;
|
|
5859
|
-
};
|
|
5860
|
-
|
|
5861
5878
|
export type Maintenance_Request__C_Filter = {
|
|
5862
5879
|
Actual_Cost__c?: InputMaybe<CurrencyOperators>;
|
|
5863
5880
|
Assigned_Worker__c?: InputMaybe<IdOperators>;
|
|
@@ -5892,49 +5909,12 @@ export type Maintenance_Request__C_Filter = {
|
|
|
5892
5909
|
or?: InputMaybe<Array<InputMaybe<Maintenance_Request__C_Filter>>>;
|
|
5893
5910
|
};
|
|
5894
5911
|
|
|
5895
|
-
export type Maintenance_Request__C_OrderBy = {
|
|
5896
|
-
Actual_Cost__c?: InputMaybe<OrderByClause>;
|
|
5897
|
-
Assigned_Worker__c?: InputMaybe<OrderByClause>;
|
|
5898
|
-
Assigned_Worker__r?: InputMaybe<Maintenance_Worker__C_OrderBy>;
|
|
5899
|
-
Completed__c?: InputMaybe<OrderByClause>;
|
|
5900
|
-
CreatedBy?: InputMaybe<User_OrderBy>;
|
|
5901
|
-
CreatedById?: InputMaybe<OrderByClause>;
|
|
5902
|
-
CreatedDate?: InputMaybe<OrderByClause>;
|
|
5903
|
-
Description__c?: InputMaybe<AggregateOrderByStringClause>;
|
|
5904
|
-
Est_Cost__c?: InputMaybe<OrderByClause>;
|
|
5905
|
-
Id?: InputMaybe<OrderByClause>;
|
|
5906
|
-
IsDeleted?: InputMaybe<OrderByClause>;
|
|
5907
|
-
LastActivityDate?: InputMaybe<OrderByClause>;
|
|
5908
|
-
LastModifiedBy?: InputMaybe<User_OrderBy>;
|
|
5909
|
-
LastModifiedById?: InputMaybe<OrderByClause>;
|
|
5910
|
-
LastModifiedDate?: InputMaybe<OrderByClause>;
|
|
5911
|
-
Name?: InputMaybe<OrderByClause>;
|
|
5912
|
-
Owner?: InputMaybe<Maintenance_Request__C_Owner_OrderBys>;
|
|
5913
|
-
OwnerId?: InputMaybe<OrderByClause>;
|
|
5914
|
-
Priority__c?: InputMaybe<OrderByClause>;
|
|
5915
|
-
Property__c?: InputMaybe<OrderByClause>;
|
|
5916
|
-
Property__r?: InputMaybe<Property__C_OrderBy>;
|
|
5917
|
-
Scheduled__c?: InputMaybe<OrderByClause>;
|
|
5918
|
-
Status__c?: InputMaybe<OrderByClause>;
|
|
5919
|
-
SystemModstamp?: InputMaybe<OrderByClause>;
|
|
5920
|
-
Tenant_Home__c?: InputMaybe<OrderByClause>;
|
|
5921
|
-
Type__c?: InputMaybe<OrderByClause>;
|
|
5922
|
-
User__c?: InputMaybe<OrderByClause>;
|
|
5923
|
-
User__r?: InputMaybe<Tenant__C_OrderBy>;
|
|
5924
|
-
};
|
|
5925
|
-
|
|
5926
5912
|
export type Maintenance_Request__C_Owner_Filters = {
|
|
5927
5913
|
Group?: InputMaybe<Group_Filter>;
|
|
5928
5914
|
Name?: InputMaybe<Name_Filter>;
|
|
5929
5915
|
User?: InputMaybe<User_Filter>;
|
|
5930
5916
|
};
|
|
5931
5917
|
|
|
5932
|
-
export type Maintenance_Request__C_Owner_OrderBys = {
|
|
5933
|
-
Group?: InputMaybe<Group_OrderBy>;
|
|
5934
|
-
Name?: InputMaybe<Name_OrderBy>;
|
|
5935
|
-
User?: InputMaybe<User_OrderBy>;
|
|
5936
|
-
};
|
|
5937
|
-
|
|
5938
5918
|
export type Maintenance_Worker__History_Filter = {
|
|
5939
5919
|
CreatedBy?: InputMaybe<User_Filter>;
|
|
5940
5920
|
CreatedById?: InputMaybe<IdOperators>;
|
|
@@ -5981,42 +5961,12 @@ export type Maintenance_Worker__C_Filter = {
|
|
|
5981
5961
|
or?: InputMaybe<Array<InputMaybe<Maintenance_Worker__C_Filter>>>;
|
|
5982
5962
|
};
|
|
5983
5963
|
|
|
5984
|
-
export type Maintenance_Worker__C_OrderBy = {
|
|
5985
|
-
Certifications__c?: InputMaybe<AggregateOrderByStringClause>;
|
|
5986
|
-
CreatedBy?: InputMaybe<User_OrderBy>;
|
|
5987
|
-
CreatedById?: InputMaybe<OrderByClause>;
|
|
5988
|
-
CreatedDate?: InputMaybe<OrderByClause>;
|
|
5989
|
-
Employment_Type__c?: InputMaybe<OrderByClause>;
|
|
5990
|
-
Hourly_Rate__c?: InputMaybe<OrderByClause>;
|
|
5991
|
-
Id?: InputMaybe<OrderByClause>;
|
|
5992
|
-
IsActive__c?: InputMaybe<OrderByClause>;
|
|
5993
|
-
IsDeleted?: InputMaybe<OrderByClause>;
|
|
5994
|
-
LastActivityDate?: InputMaybe<OrderByClause>;
|
|
5995
|
-
LastModifiedBy?: InputMaybe<User_OrderBy>;
|
|
5996
|
-
LastModifiedById?: InputMaybe<OrderByClause>;
|
|
5997
|
-
LastModifiedDate?: InputMaybe<OrderByClause>;
|
|
5998
|
-
Location__c?: InputMaybe<OrderByClause>;
|
|
5999
|
-
Name?: InputMaybe<OrderByClause>;
|
|
6000
|
-
Owner?: InputMaybe<Maintenance_Worker__C_Owner_OrderBys>;
|
|
6001
|
-
OwnerId?: InputMaybe<OrderByClause>;
|
|
6002
|
-
Phone__c?: InputMaybe<OrderByClause>;
|
|
6003
|
-
Rating__c?: InputMaybe<OrderByClause>;
|
|
6004
|
-
SystemModstamp?: InputMaybe<OrderByClause>;
|
|
6005
|
-
Type__c?: InputMaybe<OrderByClause>;
|
|
6006
|
-
};
|
|
6007
|
-
|
|
6008
5964
|
export type Maintenance_Worker__C_Owner_Filters = {
|
|
6009
5965
|
Group?: InputMaybe<Group_Filter>;
|
|
6010
5966
|
Name?: InputMaybe<Name_Filter>;
|
|
6011
5967
|
User?: InputMaybe<User_Filter>;
|
|
6012
5968
|
};
|
|
6013
5969
|
|
|
6014
|
-
export type Maintenance_Worker__C_Owner_OrderBys = {
|
|
6015
|
-
Group?: InputMaybe<Group_OrderBy>;
|
|
6016
|
-
Name?: InputMaybe<Name_OrderBy>;
|
|
6017
|
-
User?: InputMaybe<User_OrderBy>;
|
|
6018
|
-
};
|
|
6019
|
-
|
|
6020
5970
|
export type ManagedContentPublishedUrl_Filter = {
|
|
6021
5971
|
AssociatedCampaign?: InputMaybe<Campaign_Filter>;
|
|
6022
5972
|
AssociatedCampaignId?: InputMaybe<IdOperators>;
|
|
@@ -6170,6 +6120,121 @@ export type Name_OrderBy = {
|
|
|
6170
6120
|
Username?: InputMaybe<OrderByClause>;
|
|
6171
6121
|
};
|
|
6172
6122
|
|
|
6123
|
+
export type NetworkDataCategory_Filter = {
|
|
6124
|
+
CreatedBy?: InputMaybe<User_Filter>;
|
|
6125
|
+
CreatedById?: InputMaybe<IdOperators>;
|
|
6126
|
+
CreatedDate?: InputMaybe<DateTimeOperators>;
|
|
6127
|
+
DataCategoryGroupName?: InputMaybe<StringOperators>;
|
|
6128
|
+
DataCategoryLabel?: InputMaybe<StringOperators>;
|
|
6129
|
+
DataCategoryName?: InputMaybe<StringOperators>;
|
|
6130
|
+
Description?: InputMaybe<LongTextAreaOperators>;
|
|
6131
|
+
Id?: InputMaybe<IdOperators>;
|
|
6132
|
+
Image?: InputMaybe<ManagedContent_Filter>;
|
|
6133
|
+
ImageId?: InputMaybe<IdOperators>;
|
|
6134
|
+
IsDeleted?: InputMaybe<BooleanOperators>;
|
|
6135
|
+
Label?: InputMaybe<StringOperators>;
|
|
6136
|
+
LastModifiedBy?: InputMaybe<User_Filter>;
|
|
6137
|
+
LastModifiedById?: InputMaybe<IdOperators>;
|
|
6138
|
+
LastModifiedDate?: InputMaybe<DateTimeOperators>;
|
|
6139
|
+
Network?: InputMaybe<Network_Filter>;
|
|
6140
|
+
NetworkId?: InputMaybe<IdOperators>;
|
|
6141
|
+
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
6142
|
+
and?: InputMaybe<Array<InputMaybe<NetworkDataCategory_Filter>>>;
|
|
6143
|
+
not?: InputMaybe<NetworkDataCategory_Filter>;
|
|
6144
|
+
or?: InputMaybe<Array<InputMaybe<NetworkDataCategory_Filter>>>;
|
|
6145
|
+
};
|
|
6146
|
+
|
|
6147
|
+
export type Network_Filter = {
|
|
6148
|
+
AllowedExtensions?: InputMaybe<LongTextAreaOperators>;
|
|
6149
|
+
CaseCommentEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6150
|
+
ChangePasswordEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6151
|
+
ChgEmailVerNewEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6152
|
+
ChgEmailVerOldEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6153
|
+
CreatedBy?: InputMaybe<User_Filter>;
|
|
6154
|
+
CreatedById?: InputMaybe<IdOperators>;
|
|
6155
|
+
CreatedDate?: InputMaybe<DateTimeOperators>;
|
|
6156
|
+
Description?: InputMaybe<StringOperators>;
|
|
6157
|
+
DeviceActEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6158
|
+
EmailFooterLogoId?: InputMaybe<IdOperators>;
|
|
6159
|
+
EmailFooterText?: InputMaybe<StringOperators>;
|
|
6160
|
+
EmailSenderAddress?: InputMaybe<EmailOperators>;
|
|
6161
|
+
EmailSenderName?: InputMaybe<StringOperators>;
|
|
6162
|
+
FirstActivationDate?: InputMaybe<DateOperators>;
|
|
6163
|
+
ForgotPasswordEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6164
|
+
HeadlessForgotPasswordTemplateId?: InputMaybe<IdOperators>;
|
|
6165
|
+
HeadlessRegistrationTemplateId?: InputMaybe<IdOperators>;
|
|
6166
|
+
Id?: InputMaybe<IdOperators>;
|
|
6167
|
+
LastModifiedBy?: InputMaybe<User_Filter>;
|
|
6168
|
+
LastModifiedById?: InputMaybe<IdOperators>;
|
|
6169
|
+
LastModifiedDate?: InputMaybe<DateTimeOperators>;
|
|
6170
|
+
LockoutEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6171
|
+
MaxFileSizeKb?: InputMaybe<IntegerOperators>;
|
|
6172
|
+
Name?: InputMaybe<StringOperators>;
|
|
6173
|
+
NewSenderAddress?: InputMaybe<EmailOperators>;
|
|
6174
|
+
OptionsActionOverrideEnabled?: InputMaybe<BooleanOperators>;
|
|
6175
|
+
OptionsAdvancedAuthForSiteEnabled?: InputMaybe<BooleanOperators>;
|
|
6176
|
+
OptionsAllowInternalUserLogin?: InputMaybe<BooleanOperators>;
|
|
6177
|
+
OptionsAllowMembersToFlag?: InputMaybe<BooleanOperators>;
|
|
6178
|
+
OptionsApexCDNCachingEnabled?: InputMaybe<BooleanOperators>;
|
|
6179
|
+
OptionsCWBannerState?: InputMaybe<BooleanOperators>;
|
|
6180
|
+
OptionsDirectMessagesEnabled?: InputMaybe<BooleanOperators>;
|
|
6181
|
+
OptionsDisableWorkspaceInfo?: InputMaybe<BooleanOperators>;
|
|
6182
|
+
OptionsEinsteinAnswersEnabled?: InputMaybe<BooleanOperators>;
|
|
6183
|
+
OptionsEinsteinAnswersKAEnabled?: InputMaybe<BooleanOperators>;
|
|
6184
|
+
OptionsEinsteinAnswersQAEnabled?: InputMaybe<BooleanOperators>;
|
|
6185
|
+
OptionsEinsteinAnswersSnippetEnabled?: InputMaybe<BooleanOperators>;
|
|
6186
|
+
OptionsEmbeddedLoginEnabled?: InputMaybe<BooleanOperators>;
|
|
6187
|
+
OptionsEnableTalkingAboutStats?: InputMaybe<BooleanOperators>;
|
|
6188
|
+
OptionsEnableTopicAssignmentRules?: InputMaybe<BooleanOperators>;
|
|
6189
|
+
OptionsExpFriendlyUrlsAsDefault?: InputMaybe<BooleanOperators>;
|
|
6190
|
+
OptionsExperienceBundleBasedSnaOverrideEnabled?: InputMaybe<BooleanOperators>;
|
|
6191
|
+
OptionsGatherCustomerSentimentData?: InputMaybe<BooleanOperators>;
|
|
6192
|
+
OptionsGuestChatterEnabled?: InputMaybe<BooleanOperators>;
|
|
6193
|
+
OptionsGuestFileAccessEnabled?: InputMaybe<BooleanOperators>;
|
|
6194
|
+
OptionsGuestMemberVisibility?: InputMaybe<BooleanOperators>;
|
|
6195
|
+
OptionsHeadlessFrgtPswEnabled?: InputMaybe<BooleanOperators>;
|
|
6196
|
+
OptionsImageOptimizationCDNEnabled?: InputMaybe<BooleanOperators>;
|
|
6197
|
+
OptionsInvitationsEnabled?: InputMaybe<BooleanOperators>;
|
|
6198
|
+
OptionsKnowledgeableEnabled?: InputMaybe<BooleanOperators>;
|
|
6199
|
+
OptionsLWRExperienceConnectedAppEnabled?: InputMaybe<BooleanOperators>;
|
|
6200
|
+
OptionsLWRExperienceOnManagedRuntime?: InputMaybe<BooleanOperators>;
|
|
6201
|
+
OptionsLWRSearchGenerativeAnswersEnabled?: InputMaybe<BooleanOperators>;
|
|
6202
|
+
OptionsMemberVisibility?: InputMaybe<BooleanOperators>;
|
|
6203
|
+
OptionsMobileImageOptimizationEnabled?: InputMaybe<BooleanOperators>;
|
|
6204
|
+
OptionsNetworkSentimentAnalysis?: InputMaybe<BooleanOperators>;
|
|
6205
|
+
OptionsNicknameDisplayEnabled?: InputMaybe<BooleanOperators>;
|
|
6206
|
+
OptionsPrivateMessagesEnabled?: InputMaybe<BooleanOperators>;
|
|
6207
|
+
OptionsProfileBasedLayoutsForKnowledgeSearchEnabled?: InputMaybe<BooleanOperators>;
|
|
6208
|
+
OptionsPvtPagesPwdResetAccessDisabled?: InputMaybe<BooleanOperators>;
|
|
6209
|
+
OptionsRecognitionBadgingEnabled?: InputMaybe<BooleanOperators>;
|
|
6210
|
+
OptionsReputationEnabled?: InputMaybe<BooleanOperators>;
|
|
6211
|
+
OptionsReputationRecordConversationsDisabled?: InputMaybe<BooleanOperators>;
|
|
6212
|
+
OptionsSecondaryEmailSenderEnabled?: InputMaybe<BooleanOperators>;
|
|
6213
|
+
OptionsSelfRegistrationEnabled?: InputMaybe<BooleanOperators>;
|
|
6214
|
+
OptionsSendWelcomeEmail?: InputMaybe<BooleanOperators>;
|
|
6215
|
+
OptionsShowAllNetworkSettings?: InputMaybe<BooleanOperators>;
|
|
6216
|
+
OptionsSiteAsContainerEnabled?: InputMaybe<BooleanOperators>;
|
|
6217
|
+
OptionsThreadedDiscussionsEnabled?: InputMaybe<BooleanOperators>;
|
|
6218
|
+
OptionsTopicFilteringForKnowledgeSearchEnabled?: InputMaybe<BooleanOperators>;
|
|
6219
|
+
OptionsTopicSuggestionsEnabled?: InputMaybe<BooleanOperators>;
|
|
6220
|
+
OptionsTwilioCallbackApiEnabled?: InputMaybe<BooleanOperators>;
|
|
6221
|
+
OptionsUpDownVoteEnabled?: InputMaybe<BooleanOperators>;
|
|
6222
|
+
PendingSecondaryEmailAddress?: InputMaybe<EmailOperators>;
|
|
6223
|
+
PwdlessRegEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6224
|
+
SelfRegMicroBatchSubErrorEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6225
|
+
SelfRegProfileId?: InputMaybe<IdOperators>;
|
|
6226
|
+
Status?: InputMaybe<PicklistOperators>;
|
|
6227
|
+
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
6228
|
+
TabSetId?: InputMaybe<IdOperators>;
|
|
6229
|
+
UrlPathPrefix?: InputMaybe<StringOperators>;
|
|
6230
|
+
VerificationEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6231
|
+
VerifiedSecondaryEmailAddress?: InputMaybe<EmailOperators>;
|
|
6232
|
+
WelcomeEmailTemplateId?: InputMaybe<IdOperators>;
|
|
6233
|
+
and?: InputMaybe<Array<InputMaybe<Network_Filter>>>;
|
|
6234
|
+
not?: InputMaybe<Network_Filter>;
|
|
6235
|
+
or?: InputMaybe<Array<InputMaybe<Network_Filter>>>;
|
|
6236
|
+
};
|
|
6237
|
+
|
|
6173
6238
|
export type NoFunctionAggregateOrderByClause = {
|
|
6174
6239
|
nulls?: InputMaybe<NullsOrder>;
|
|
6175
6240
|
order?: InputMaybe<ResultsOrder>;
|
|
@@ -6211,6 +6276,7 @@ export type Note_Parent_Filters = {
|
|
|
6211
6276
|
CommSubscriptionTiming?: InputMaybe<CommSubscriptionTiming_Filter>;
|
|
6212
6277
|
Contact?: InputMaybe<Contact_Filter>;
|
|
6213
6278
|
Contract?: InputMaybe<Contract_Filter>;
|
|
6279
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
6214
6280
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
6215
6281
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
6216
6282
|
EngagementChannelType?: InputMaybe<EngagementChannelType_Filter>;
|
|
@@ -6278,16 +6344,35 @@ export const NullOrder = {
|
|
|
6278
6344
|
First: "FIRST",
|
|
6279
6345
|
Last: "LAST",
|
|
6280
6346
|
} as const;
|
|
6281
|
-
|
|
6282
6347
|
export type NullOrder = (typeof NullOrder)[keyof typeof NullOrder];
|
|
6283
6348
|
|
|
6284
6349
|
export const NullsOrder = {
|
|
6285
6350
|
First: "FIRST",
|
|
6286
6351
|
Last: "LAST",
|
|
6287
6352
|
} as const;
|
|
6288
|
-
|
|
6289
6353
|
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder];
|
|
6290
6354
|
|
|
6355
|
+
export type ObjectMetadataTag_Filter = {
|
|
6356
|
+
CreatedBy?: InputMaybe<User_Filter>;
|
|
6357
|
+
CreatedById?: InputMaybe<IdOperators>;
|
|
6358
|
+
CreatedDate?: InputMaybe<DateTimeOperators>;
|
|
6359
|
+
Id?: InputMaybe<IdOperators>;
|
|
6360
|
+
IsDeleted?: InputMaybe<BooleanOperators>;
|
|
6361
|
+
Language?: InputMaybe<StringOperators>;
|
|
6362
|
+
LastModifiedBy?: InputMaybe<User_Filter>;
|
|
6363
|
+
LastModifiedById?: InputMaybe<IdOperators>;
|
|
6364
|
+
LastModifiedDate?: InputMaybe<DateTimeOperators>;
|
|
6365
|
+
Name?: InputMaybe<StringOperators>;
|
|
6366
|
+
Record?: InputMaybe<Product2_Filter>;
|
|
6367
|
+
RecordId?: InputMaybe<IdOperators>;
|
|
6368
|
+
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
6369
|
+
TagType?: InputMaybe<PicklistOperators>;
|
|
6370
|
+
Value?: InputMaybe<TextAreaOperators>;
|
|
6371
|
+
and?: InputMaybe<Array<InputMaybe<ObjectMetadataTag_Filter>>>;
|
|
6372
|
+
not?: InputMaybe<ObjectMetadataTag_Filter>;
|
|
6373
|
+
or?: InputMaybe<Array<InputMaybe<ObjectMetadataTag_Filter>>>;
|
|
6374
|
+
};
|
|
6375
|
+
|
|
6291
6376
|
export type ObjectPermissions_Filter = {
|
|
6292
6377
|
CreatedBy?: InputMaybe<User_Filter>;
|
|
6293
6378
|
CreatedById?: InputMaybe<IdOperators>;
|
|
@@ -6312,6 +6397,52 @@ export type ObjectPermissions_Filter = {
|
|
|
6312
6397
|
or?: InputMaybe<Array<InputMaybe<ObjectPermissions_Filter>>>;
|
|
6313
6398
|
};
|
|
6314
6399
|
|
|
6400
|
+
export type ObjectRelatedUrl_Filter = {
|
|
6401
|
+
CreatedBy?: InputMaybe<User_Filter>;
|
|
6402
|
+
CreatedById?: InputMaybe<IdOperators>;
|
|
6403
|
+
CreatedDate?: InputMaybe<DateTimeOperators>;
|
|
6404
|
+
Id?: InputMaybe<IdOperators>;
|
|
6405
|
+
IsDeleted?: InputMaybe<BooleanOperators>;
|
|
6406
|
+
LanguageCode?: InputMaybe<StringOperators>;
|
|
6407
|
+
LastModifiedBy?: InputMaybe<User_Filter>;
|
|
6408
|
+
LastModifiedById?: InputMaybe<IdOperators>;
|
|
6409
|
+
LastModifiedDate?: InputMaybe<DateTimeOperators>;
|
|
6410
|
+
Name?: InputMaybe<StringOperators>;
|
|
6411
|
+
Parent?: InputMaybe<ObjectRelatedUrl_Parent_Filters>;
|
|
6412
|
+
ParentId?: InputMaybe<IdOperators>;
|
|
6413
|
+
Scope?: InputMaybe<StringOperators>;
|
|
6414
|
+
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
6415
|
+
UniqueIndex?: InputMaybe<StringOperators>;
|
|
6416
|
+
UrlName?: InputMaybe<StringOperators>;
|
|
6417
|
+
and?: InputMaybe<Array<InputMaybe<ObjectRelatedUrl_Filter>>>;
|
|
6418
|
+
not?: InputMaybe<ObjectRelatedUrl_Filter>;
|
|
6419
|
+
or?: InputMaybe<Array<InputMaybe<ObjectRelatedUrl_Filter>>>;
|
|
6420
|
+
};
|
|
6421
|
+
|
|
6422
|
+
export type ObjectRelatedUrl_Parent_Filters = {
|
|
6423
|
+
Account?: InputMaybe<Account_Filter>;
|
|
6424
|
+
Agent__c?: InputMaybe<Agent__C_Filter>;
|
|
6425
|
+
Application__c?: InputMaybe<Application__C_Filter>;
|
|
6426
|
+
Contact?: InputMaybe<Contact_Filter>;
|
|
6427
|
+
KPI_Snapshot__c?: InputMaybe<Kpi_Snapshot__C_Filter>;
|
|
6428
|
+
Lease__c?: InputMaybe<Lease__C_Filter>;
|
|
6429
|
+
Maintenance_Request__c?: InputMaybe<Maintenance_Request__C_Filter>;
|
|
6430
|
+
Maintenance_Worker__c?: InputMaybe<Maintenance_Worker__C_Filter>;
|
|
6431
|
+
Name?: InputMaybe<Name_Filter>;
|
|
6432
|
+
Notification__c?: InputMaybe<Notification__C_Filter>;
|
|
6433
|
+
Payment__c?: InputMaybe<Payment__C_Filter>;
|
|
6434
|
+
Product2?: InputMaybe<Product2_Filter>;
|
|
6435
|
+
Property_Cost__c?: InputMaybe<Property_Cost__C_Filter>;
|
|
6436
|
+
Property_Feature__c?: InputMaybe<Property_Feature__C_Filter>;
|
|
6437
|
+
Property_Image__c?: InputMaybe<Property_Image__C_Filter>;
|
|
6438
|
+
Property_Listing__c?: InputMaybe<Property_Listing__C_Filter>;
|
|
6439
|
+
Property_Management_Company__c?: InputMaybe<Property_Management_Company__C_Filter>;
|
|
6440
|
+
Property_Owner__c?: InputMaybe<Property_Owner__C_Filter>;
|
|
6441
|
+
Property_Sale__c?: InputMaybe<Property_Sale__C_Filter>;
|
|
6442
|
+
Property__c?: InputMaybe<Property__C_Filter>;
|
|
6443
|
+
Tenant__c?: InputMaybe<Tenant__C_Filter>;
|
|
6444
|
+
};
|
|
6445
|
+
|
|
6315
6446
|
export type OpportunityContactRole_Filter = {
|
|
6316
6447
|
Contact?: InputMaybe<Contact_Filter>;
|
|
6317
6448
|
ContactId?: InputMaybe<IdOperators>;
|
|
@@ -6507,6 +6638,12 @@ export type OrderByClause = {
|
|
|
6507
6638
|
order?: InputMaybe<ResultOrder>;
|
|
6508
6639
|
};
|
|
6509
6640
|
|
|
6641
|
+
export type OrderByGeolocationClause = {
|
|
6642
|
+
distance?: InputMaybe<DistanceInput>;
|
|
6643
|
+
nulls?: InputMaybe<NullOrder>;
|
|
6644
|
+
order?: InputMaybe<ResultOrder>;
|
|
6645
|
+
};
|
|
6646
|
+
|
|
6510
6647
|
export type OrderHistory_Filter = {
|
|
6511
6648
|
CreatedBy?: InputMaybe<User_Filter>;
|
|
6512
6649
|
CreatedById?: InputMaybe<IdOperators>;
|
|
@@ -7240,6 +7377,7 @@ export type PermissionSetLicense_Filter = {
|
|
|
7240
7377
|
MaximumPermissionsManageLoginAccessPolicies?: InputMaybe<BooleanOperators>;
|
|
7241
7378
|
MaximumPermissionsManageMaliciousFiles?: InputMaybe<BooleanOperators>;
|
|
7242
7379
|
MaximumPermissionsManageMobile?: InputMaybe<BooleanOperators>;
|
|
7380
|
+
MaximumPermissionsManageMobileAppSecurity?: InputMaybe<BooleanOperators>;
|
|
7243
7381
|
MaximumPermissionsManageNamedCredentials?: InputMaybe<BooleanOperators>;
|
|
7244
7382
|
MaximumPermissionsManageNetworks?: InputMaybe<BooleanOperators>;
|
|
7245
7383
|
MaximumPermissionsManageOrchInstsAndWorkItems?: InputMaybe<BooleanOperators>;
|
|
@@ -7271,8 +7409,13 @@ export type PermissionSetLicense_Filter = {
|
|
|
7271
7409
|
MaximumPermissionsMemberSelfServiceAgentAccess?: InputMaybe<BooleanOperators>;
|
|
7272
7410
|
MaximumPermissionsMergeTopics?: InputMaybe<BooleanOperators>;
|
|
7273
7411
|
MaximumPermissionsMetadataStudioUser?: InputMaybe<BooleanOperators>;
|
|
7412
|
+
MaximumPermissionsMicrobatching?: InputMaybe<BooleanOperators>;
|
|
7274
7413
|
MaximumPermissionsMngBenVerfForAssistiveAgnt?: InputMaybe<BooleanOperators>;
|
|
7414
|
+
MaximumPermissionsMobileAppSecurity?: InputMaybe<BooleanOperators>;
|
|
7275
7415
|
MaximumPermissionsModerateChatter?: InputMaybe<BooleanOperators>;
|
|
7416
|
+
MaximumPermissionsModerateNetworkFeeds?: InputMaybe<BooleanOperators>;
|
|
7417
|
+
MaximumPermissionsModerateNetworkFiles?: InputMaybe<BooleanOperators>;
|
|
7418
|
+
MaximumPermissionsModerateNetworkMessages?: InputMaybe<BooleanOperators>;
|
|
7276
7419
|
MaximumPermissionsModerateNetworkUsers?: InputMaybe<BooleanOperators>;
|
|
7277
7420
|
MaximumPermissionsModifyAccessAllowPolicies?: InputMaybe<BooleanOperators>;
|
|
7278
7421
|
MaximumPermissionsModifyAccessDenyPolicies?: InputMaybe<BooleanOperators>;
|
|
@@ -7318,6 +7461,7 @@ export type PermissionSetLicense_Filter = {
|
|
|
7318
7461
|
MaximumPermissionsSendAnnouncementEmails?: InputMaybe<BooleanOperators>;
|
|
7319
7462
|
MaximumPermissionsSendCustomNotifications?: InputMaybe<BooleanOperators>;
|
|
7320
7463
|
MaximumPermissionsSendSitRequests?: InputMaybe<BooleanOperators>;
|
|
7464
|
+
MaximumPermissionsShareFilesWithNetworks?: InputMaybe<BooleanOperators>;
|
|
7321
7465
|
MaximumPermissionsShowCompanyNameAsUserBadge?: InputMaybe<BooleanOperators>;
|
|
7322
7466
|
MaximumPermissionsSimpleCsvDataImportUser?: InputMaybe<BooleanOperators>;
|
|
7323
7467
|
MaximumPermissionsSkipIdentityConfirmation?: InputMaybe<BooleanOperators>;
|
|
@@ -7365,11 +7509,13 @@ export type PermissionSetLicense_Filter = {
|
|
|
7365
7509
|
MaximumPermissionsViewClientSecret?: InputMaybe<BooleanOperators>;
|
|
7366
7510
|
MaximumPermissionsViewContent?: InputMaybe<BooleanOperators>;
|
|
7367
7511
|
MaximumPermissionsViewContentTaxonomy?: InputMaybe<BooleanOperators>;
|
|
7512
|
+
MaximumPermissionsViewCustomerSentiment?: InputMaybe<BooleanOperators>;
|
|
7368
7513
|
MaximumPermissionsViewDataAssessment?: InputMaybe<BooleanOperators>;
|
|
7369
7514
|
MaximumPermissionsViewDataCategories?: InputMaybe<BooleanOperators>;
|
|
7370
7515
|
MaximumPermissionsViewDeveloperName?: InputMaybe<BooleanOperators>;
|
|
7371
7516
|
MaximumPermissionsViewEncryptedData?: InputMaybe<BooleanOperators>;
|
|
7372
7517
|
MaximumPermissionsViewEventLogFiles?: InputMaybe<BooleanOperators>;
|
|
7518
|
+
MaximumPermissionsViewGlobalHeader?: InputMaybe<BooleanOperators>;
|
|
7373
7519
|
MaximumPermissionsViewHealthCheck?: InputMaybe<BooleanOperators>;
|
|
7374
7520
|
MaximumPermissionsViewHelpLink?: InputMaybe<BooleanOperators>;
|
|
7375
7521
|
MaximumPermissionsViewLicenseUtilization?: InputMaybe<BooleanOperators>;
|
|
@@ -7624,6 +7770,7 @@ export type PermissionSet_Filter = {
|
|
|
7624
7770
|
PermissionsManageLoginAccessPolicies?: InputMaybe<BooleanOperators>;
|
|
7625
7771
|
PermissionsManageMaliciousFiles?: InputMaybe<BooleanOperators>;
|
|
7626
7772
|
PermissionsManageMobile?: InputMaybe<BooleanOperators>;
|
|
7773
|
+
PermissionsManageMobileAppSecurity?: InputMaybe<BooleanOperators>;
|
|
7627
7774
|
PermissionsManageNamedCredentials?: InputMaybe<BooleanOperators>;
|
|
7628
7775
|
PermissionsManageNetworks?: InputMaybe<BooleanOperators>;
|
|
7629
7776
|
PermissionsManageOrchInstsAndWorkItems?: InputMaybe<BooleanOperators>;
|
|
@@ -7655,8 +7802,13 @@ export type PermissionSet_Filter = {
|
|
|
7655
7802
|
PermissionsMemberSelfServiceAgentAccess?: InputMaybe<BooleanOperators>;
|
|
7656
7803
|
PermissionsMergeTopics?: InputMaybe<BooleanOperators>;
|
|
7657
7804
|
PermissionsMetadataStudioUser?: InputMaybe<BooleanOperators>;
|
|
7805
|
+
PermissionsMicrobatching?: InputMaybe<BooleanOperators>;
|
|
7658
7806
|
PermissionsMngBenVerfForAssistiveAgnt?: InputMaybe<BooleanOperators>;
|
|
7807
|
+
PermissionsMobileAppSecurity?: InputMaybe<BooleanOperators>;
|
|
7659
7808
|
PermissionsModerateChatter?: InputMaybe<BooleanOperators>;
|
|
7809
|
+
PermissionsModerateNetworkFeeds?: InputMaybe<BooleanOperators>;
|
|
7810
|
+
PermissionsModerateNetworkFiles?: InputMaybe<BooleanOperators>;
|
|
7811
|
+
PermissionsModerateNetworkMessages?: InputMaybe<BooleanOperators>;
|
|
7660
7812
|
PermissionsModerateNetworkUsers?: InputMaybe<BooleanOperators>;
|
|
7661
7813
|
PermissionsModifyAccessAllowPolicies?: InputMaybe<BooleanOperators>;
|
|
7662
7814
|
PermissionsModifyAccessDenyPolicies?: InputMaybe<BooleanOperators>;
|
|
@@ -7702,6 +7854,7 @@ export type PermissionSet_Filter = {
|
|
|
7702
7854
|
PermissionsSendAnnouncementEmails?: InputMaybe<BooleanOperators>;
|
|
7703
7855
|
PermissionsSendCustomNotifications?: InputMaybe<BooleanOperators>;
|
|
7704
7856
|
PermissionsSendSitRequests?: InputMaybe<BooleanOperators>;
|
|
7857
|
+
PermissionsShareFilesWithNetworks?: InputMaybe<BooleanOperators>;
|
|
7705
7858
|
PermissionsShowCompanyNameAsUserBadge?: InputMaybe<BooleanOperators>;
|
|
7706
7859
|
PermissionsSimpleCsvDataImportUser?: InputMaybe<BooleanOperators>;
|
|
7707
7860
|
PermissionsSkipIdentityConfirmation?: InputMaybe<BooleanOperators>;
|
|
@@ -7749,11 +7902,13 @@ export type PermissionSet_Filter = {
|
|
|
7749
7902
|
PermissionsViewClientSecret?: InputMaybe<BooleanOperators>;
|
|
7750
7903
|
PermissionsViewContent?: InputMaybe<BooleanOperators>;
|
|
7751
7904
|
PermissionsViewContentTaxonomy?: InputMaybe<BooleanOperators>;
|
|
7905
|
+
PermissionsViewCustomerSentiment?: InputMaybe<BooleanOperators>;
|
|
7752
7906
|
PermissionsViewDataAssessment?: InputMaybe<BooleanOperators>;
|
|
7753
7907
|
PermissionsViewDataCategories?: InputMaybe<BooleanOperators>;
|
|
7754
7908
|
PermissionsViewDeveloperName?: InputMaybe<BooleanOperators>;
|
|
7755
7909
|
PermissionsViewEncryptedData?: InputMaybe<BooleanOperators>;
|
|
7756
7910
|
PermissionsViewEventLogFiles?: InputMaybe<BooleanOperators>;
|
|
7911
|
+
PermissionsViewGlobalHeader?: InputMaybe<BooleanOperators>;
|
|
7757
7912
|
PermissionsViewHealthCheck?: InputMaybe<BooleanOperators>;
|
|
7758
7913
|
PermissionsViewHelpLink?: InputMaybe<BooleanOperators>;
|
|
7759
7914
|
PermissionsViewLicenseUtilization?: InputMaybe<BooleanOperators>;
|
|
@@ -8039,6 +8194,7 @@ export type ProcessInstance_TargetObject_Filters = {
|
|
|
8039
8194
|
Customer?: InputMaybe<Customer_Filter>;
|
|
8040
8195
|
DataUseLegalBasis?: InputMaybe<DataUseLegalBasis_Filter>;
|
|
8041
8196
|
DataUsePurpose?: InputMaybe<DataUsePurpose_Filter>;
|
|
8197
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
8042
8198
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
8043
8199
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
8044
8200
|
DuplicateRecordItem?: InputMaybe<DuplicateRecordItem_Filter>;
|
|
@@ -8485,6 +8641,7 @@ export type Profile_Filter = {
|
|
|
8485
8641
|
PermissionsManageLoginAccessPolicies?: InputMaybe<BooleanOperators>;
|
|
8486
8642
|
PermissionsManageMaliciousFiles?: InputMaybe<BooleanOperators>;
|
|
8487
8643
|
PermissionsManageMobile?: InputMaybe<BooleanOperators>;
|
|
8644
|
+
PermissionsManageMobileAppSecurity?: InputMaybe<BooleanOperators>;
|
|
8488
8645
|
PermissionsManageNamedCredentials?: InputMaybe<BooleanOperators>;
|
|
8489
8646
|
PermissionsManageNetworks?: InputMaybe<BooleanOperators>;
|
|
8490
8647
|
PermissionsManageOrchInstsAndWorkItems?: InputMaybe<BooleanOperators>;
|
|
@@ -8516,8 +8673,13 @@ export type Profile_Filter = {
|
|
|
8516
8673
|
PermissionsMemberSelfServiceAgentAccess?: InputMaybe<BooleanOperators>;
|
|
8517
8674
|
PermissionsMergeTopics?: InputMaybe<BooleanOperators>;
|
|
8518
8675
|
PermissionsMetadataStudioUser?: InputMaybe<BooleanOperators>;
|
|
8676
|
+
PermissionsMicrobatching?: InputMaybe<BooleanOperators>;
|
|
8519
8677
|
PermissionsMngBenVerfForAssistiveAgnt?: InputMaybe<BooleanOperators>;
|
|
8678
|
+
PermissionsMobileAppSecurity?: InputMaybe<BooleanOperators>;
|
|
8520
8679
|
PermissionsModerateChatter?: InputMaybe<BooleanOperators>;
|
|
8680
|
+
PermissionsModerateNetworkFeeds?: InputMaybe<BooleanOperators>;
|
|
8681
|
+
PermissionsModerateNetworkFiles?: InputMaybe<BooleanOperators>;
|
|
8682
|
+
PermissionsModerateNetworkMessages?: InputMaybe<BooleanOperators>;
|
|
8521
8683
|
PermissionsModerateNetworkUsers?: InputMaybe<BooleanOperators>;
|
|
8522
8684
|
PermissionsModifyAccessAllowPolicies?: InputMaybe<BooleanOperators>;
|
|
8523
8685
|
PermissionsModifyAccessDenyPolicies?: InputMaybe<BooleanOperators>;
|
|
@@ -8563,6 +8725,7 @@ export type Profile_Filter = {
|
|
|
8563
8725
|
PermissionsSendAnnouncementEmails?: InputMaybe<BooleanOperators>;
|
|
8564
8726
|
PermissionsSendCustomNotifications?: InputMaybe<BooleanOperators>;
|
|
8565
8727
|
PermissionsSendSitRequests?: InputMaybe<BooleanOperators>;
|
|
8728
|
+
PermissionsShareFilesWithNetworks?: InputMaybe<BooleanOperators>;
|
|
8566
8729
|
PermissionsShowCompanyNameAsUserBadge?: InputMaybe<BooleanOperators>;
|
|
8567
8730
|
PermissionsSimpleCsvDataImportUser?: InputMaybe<BooleanOperators>;
|
|
8568
8731
|
PermissionsSkipIdentityConfirmation?: InputMaybe<BooleanOperators>;
|
|
@@ -8610,11 +8773,13 @@ export type Profile_Filter = {
|
|
|
8610
8773
|
PermissionsViewClientSecret?: InputMaybe<BooleanOperators>;
|
|
8611
8774
|
PermissionsViewContent?: InputMaybe<BooleanOperators>;
|
|
8612
8775
|
PermissionsViewContentTaxonomy?: InputMaybe<BooleanOperators>;
|
|
8776
|
+
PermissionsViewCustomerSentiment?: InputMaybe<BooleanOperators>;
|
|
8613
8777
|
PermissionsViewDataAssessment?: InputMaybe<BooleanOperators>;
|
|
8614
8778
|
PermissionsViewDataCategories?: InputMaybe<BooleanOperators>;
|
|
8615
8779
|
PermissionsViewDeveloperName?: InputMaybe<BooleanOperators>;
|
|
8616
8780
|
PermissionsViewEncryptedData?: InputMaybe<BooleanOperators>;
|
|
8617
8781
|
PermissionsViewEventLogFiles?: InputMaybe<BooleanOperators>;
|
|
8782
|
+
PermissionsViewGlobalHeader?: InputMaybe<BooleanOperators>;
|
|
8618
8783
|
PermissionsViewHealthCheck?: InputMaybe<BooleanOperators>;
|
|
8619
8784
|
PermissionsViewHelpLink?: InputMaybe<BooleanOperators>;
|
|
8620
8785
|
PermissionsViewLicenseUtilization?: InputMaybe<BooleanOperators>;
|
|
@@ -8863,6 +9028,7 @@ export type Profile_OrderBy = {
|
|
|
8863
9028
|
PermissionsManageLoginAccessPolicies?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8864
9029
|
PermissionsManageMaliciousFiles?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8865
9030
|
PermissionsManageMobile?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
9031
|
+
PermissionsManageMobileAppSecurity?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8866
9032
|
PermissionsManageNamedCredentials?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8867
9033
|
PermissionsManageNetworks?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8868
9034
|
PermissionsManageOrchInstsAndWorkItems?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
@@ -8894,8 +9060,13 @@ export type Profile_OrderBy = {
|
|
|
8894
9060
|
PermissionsMemberSelfServiceAgentAccess?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8895
9061
|
PermissionsMergeTopics?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8896
9062
|
PermissionsMetadataStudioUser?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
9063
|
+
PermissionsMicrobatching?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8897
9064
|
PermissionsMngBenVerfForAssistiveAgnt?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
9065
|
+
PermissionsMobileAppSecurity?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8898
9066
|
PermissionsModerateChatter?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
9067
|
+
PermissionsModerateNetworkFeeds?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
9068
|
+
PermissionsModerateNetworkFiles?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
9069
|
+
PermissionsModerateNetworkMessages?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8899
9070
|
PermissionsModerateNetworkUsers?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8900
9071
|
PermissionsModifyAccessAllowPolicies?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8901
9072
|
PermissionsModifyAccessDenyPolicies?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
@@ -8941,6 +9112,7 @@ export type Profile_OrderBy = {
|
|
|
8941
9112
|
PermissionsSendAnnouncementEmails?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8942
9113
|
PermissionsSendCustomNotifications?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8943
9114
|
PermissionsSendSitRequests?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
9115
|
+
PermissionsShareFilesWithNetworks?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8944
9116
|
PermissionsShowCompanyNameAsUserBadge?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8945
9117
|
PermissionsSimpleCsvDataImportUser?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8946
9118
|
PermissionsSkipIdentityConfirmation?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
@@ -8988,11 +9160,13 @@ export type Profile_OrderBy = {
|
|
|
8988
9160
|
PermissionsViewClientSecret?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8989
9161
|
PermissionsViewContent?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8990
9162
|
PermissionsViewContentTaxonomy?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
9163
|
+
PermissionsViewCustomerSentiment?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8991
9164
|
PermissionsViewDataAssessment?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8992
9165
|
PermissionsViewDataCategories?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8993
9166
|
PermissionsViewDeveloperName?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8994
9167
|
PermissionsViewEncryptedData?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8995
9168
|
PermissionsViewEventLogFiles?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
9169
|
+
PermissionsViewGlobalHeader?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8996
9170
|
PermissionsViewHealthCheck?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8997
9171
|
PermissionsViewHelpLink?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
8998
9172
|
PermissionsViewLicenseUtilization?: InputMaybe<NoFunctionAggregateOrderByClause>;
|
|
@@ -9331,6 +9505,9 @@ export type Property__C_Filter = {
|
|
|
9331
9505
|
Available_Date__c?: InputMaybe<DateOperators>;
|
|
9332
9506
|
Bathrooms__c?: InputMaybe<DoubleOperators>;
|
|
9333
9507
|
Bedrooms__c?: InputMaybe<DoubleOperators>;
|
|
9508
|
+
Coordinates__Latitude__s?: InputMaybe<LatitudeOperators>;
|
|
9509
|
+
Coordinates__Longitude__s?: InputMaybe<LongitudeOperators>;
|
|
9510
|
+
Coordinates__c?: InputMaybe<GeolocationOperators>;
|
|
9334
9511
|
CreatedBy?: InputMaybe<User_Filter>;
|
|
9335
9512
|
CreatedById?: InputMaybe<IdOperators>;
|
|
9336
9513
|
CreatedDate?: InputMaybe<DateTimeOperators>;
|
|
@@ -9370,6 +9547,9 @@ export type Property__C_OrderBy = {
|
|
|
9370
9547
|
Available_Date__c?: InputMaybe<OrderByClause>;
|
|
9371
9548
|
Bathrooms__c?: InputMaybe<OrderByClause>;
|
|
9372
9549
|
Bedrooms__c?: InputMaybe<OrderByClause>;
|
|
9550
|
+
Coordinates__Latitude__s?: InputMaybe<OrderByClause>;
|
|
9551
|
+
Coordinates__Longitude__s?: InputMaybe<OrderByClause>;
|
|
9552
|
+
Coordinates__c?: InputMaybe<OrderByGeolocationClause>;
|
|
9373
9553
|
CreatedBy?: InputMaybe<User_OrderBy>;
|
|
9374
9554
|
CreatedById?: InputMaybe<OrderByClause>;
|
|
9375
9555
|
CreatedDate?: InputMaybe<OrderByClause>;
|
|
@@ -9479,6 +9659,8 @@ export type Recommendation_Filter = {
|
|
|
9479
9659
|
LastReferencedDate?: InputMaybe<DateTimeOperators>;
|
|
9480
9660
|
LastViewedDate?: InputMaybe<DateTimeOperators>;
|
|
9481
9661
|
Name?: InputMaybe<StringOperators>;
|
|
9662
|
+
Network?: InputMaybe<Network_Filter>;
|
|
9663
|
+
NetworkId?: InputMaybe<IdOperators>;
|
|
9482
9664
|
RecommendationKey?: InputMaybe<StringOperators>;
|
|
9483
9665
|
RejectionLabel?: InputMaybe<StringOperators>;
|
|
9484
9666
|
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
@@ -9680,14 +9862,12 @@ export const ResultOrder = {
|
|
|
9680
9862
|
Asc: "ASC",
|
|
9681
9863
|
Desc: "DESC",
|
|
9682
9864
|
} as const;
|
|
9683
|
-
|
|
9684
9865
|
export type ResultOrder = (typeof ResultOrder)[keyof typeof ResultOrder];
|
|
9685
9866
|
|
|
9686
9867
|
export const ResultsOrder = {
|
|
9687
9868
|
Asc: "ASC",
|
|
9688
9869
|
Desc: "DESC",
|
|
9689
9870
|
} as const;
|
|
9690
|
-
|
|
9691
9871
|
export type ResultsOrder = (typeof ResultsOrder)[keyof typeof ResultsOrder];
|
|
9692
9872
|
|
|
9693
9873
|
export type ScorecardAssociation_Filter = {
|
|
@@ -9802,6 +9982,33 @@ export type SecurityHealthCheckResult_Filter = {
|
|
|
9802
9982
|
or?: InputMaybe<Array<InputMaybe<SecurityHealthCheckResult_Filter>>>;
|
|
9803
9983
|
};
|
|
9804
9984
|
|
|
9985
|
+
export type SelfSvcPortalTopic_Filter = {
|
|
9986
|
+
CreatedBy?: InputMaybe<User_Filter>;
|
|
9987
|
+
CreatedById?: InputMaybe<IdOperators>;
|
|
9988
|
+
CreatedDate?: InputMaybe<DateTimeOperators>;
|
|
9989
|
+
Description?: InputMaybe<LongTextAreaOperators>;
|
|
9990
|
+
DeveloperName?: InputMaybe<StringOperators>;
|
|
9991
|
+
DisplayOrder?: InputMaybe<IntegerOperators>;
|
|
9992
|
+
IconResource?: InputMaybe<StaticResource_Filter>;
|
|
9993
|
+
IconResourceId?: InputMaybe<IdOperators>;
|
|
9994
|
+
Id?: InputMaybe<IdOperators>;
|
|
9995
|
+
IsActive?: InputMaybe<BooleanOperators>;
|
|
9996
|
+
IsDeleted?: InputMaybe<BooleanOperators>;
|
|
9997
|
+
IsHomePage?: InputMaybe<BooleanOperators>;
|
|
9998
|
+
IsLeftNav?: InputMaybe<BooleanOperators>;
|
|
9999
|
+
Language?: InputMaybe<PicklistOperators>;
|
|
10000
|
+
LastModifiedBy?: InputMaybe<User_Filter>;
|
|
10001
|
+
LastModifiedById?: InputMaybe<IdOperators>;
|
|
10002
|
+
LastModifiedDate?: InputMaybe<DateTimeOperators>;
|
|
10003
|
+
MasterLabel?: InputMaybe<StringOperators>;
|
|
10004
|
+
Network?: InputMaybe<Network_Filter>;
|
|
10005
|
+
NetworkId?: InputMaybe<IdOperators>;
|
|
10006
|
+
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
10007
|
+
and?: InputMaybe<Array<InputMaybe<SelfSvcPortalTopic_Filter>>>;
|
|
10008
|
+
not?: InputMaybe<SelfSvcPortalTopic_Filter>;
|
|
10009
|
+
or?: InputMaybe<Array<InputMaybe<SelfSvcPortalTopic_Filter>>>;
|
|
10010
|
+
};
|
|
10011
|
+
|
|
9805
10012
|
export type SellerHistory_Filter = {
|
|
9806
10013
|
CreatedBy?: InputMaybe<User_Filter>;
|
|
9807
10014
|
CreatedById?: InputMaybe<IdOperators>;
|
|
@@ -10157,7 +10364,6 @@ export const TabOrder = {
|
|
|
10157
10364
|
LeftRight: "LEFT_RIGHT",
|
|
10158
10365
|
TopDown: "TOP_DOWN",
|
|
10159
10366
|
} as const;
|
|
10160
|
-
|
|
10161
10367
|
export type TabOrder = (typeof TabOrder)[keyof typeof TabOrder];
|
|
10162
10368
|
|
|
10163
10369
|
export type TableauHostMapping_Filter = {
|
|
@@ -10259,6 +10465,7 @@ export type Task_What_Filters = {
|
|
|
10259
10465
|
CommSubscriptionConsent?: InputMaybe<CommSubscriptionConsent_Filter>;
|
|
10260
10466
|
ContactRequest?: InputMaybe<ContactRequest_Filter>;
|
|
10261
10467
|
Contract?: InputMaybe<Contract_Filter>;
|
|
10468
|
+
DelegatedAccount?: InputMaybe<DelegatedAccount_Filter>;
|
|
10262
10469
|
DevopsEnvironment?: InputMaybe<DevopsEnvironment_Filter>;
|
|
10263
10470
|
DevopsRequestInfo?: InputMaybe<DevopsRequestInfo_Filter>;
|
|
10264
10471
|
Image?: InputMaybe<Image_Filter>;
|
|
@@ -10337,42 +10544,12 @@ export type Tenant__C_Filter = {
|
|
|
10337
10544
|
or?: InputMaybe<Array<InputMaybe<Tenant__C_Filter>>>;
|
|
10338
10545
|
};
|
|
10339
10546
|
|
|
10340
|
-
export type Tenant__C_OrderBy = {
|
|
10341
|
-
CreatedBy?: InputMaybe<User_OrderBy>;
|
|
10342
|
-
CreatedById?: InputMaybe<OrderByClause>;
|
|
10343
|
-
CreatedDate?: InputMaybe<OrderByClause>;
|
|
10344
|
-
End_Date__c?: InputMaybe<OrderByClause>;
|
|
10345
|
-
Id?: InputMaybe<OrderByClause>;
|
|
10346
|
-
IsDeleted?: InputMaybe<OrderByClause>;
|
|
10347
|
-
LastActivityDate?: InputMaybe<OrderByClause>;
|
|
10348
|
-
LastModifiedBy?: InputMaybe<User_OrderBy>;
|
|
10349
|
-
LastModifiedById?: InputMaybe<OrderByClause>;
|
|
10350
|
-
LastModifiedDate?: InputMaybe<OrderByClause>;
|
|
10351
|
-
Name?: InputMaybe<OrderByClause>;
|
|
10352
|
-
Owner?: InputMaybe<Tenant__C_Owner_OrderBys>;
|
|
10353
|
-
OwnerId?: InputMaybe<OrderByClause>;
|
|
10354
|
-
Property__c?: InputMaybe<OrderByClause>;
|
|
10355
|
-
Property__r?: InputMaybe<Property__C_OrderBy>;
|
|
10356
|
-
Start_Date__c?: InputMaybe<OrderByClause>;
|
|
10357
|
-
Status__c?: InputMaybe<OrderByClause>;
|
|
10358
|
-
SystemModstamp?: InputMaybe<OrderByClause>;
|
|
10359
|
-
User_Status__c?: InputMaybe<OrderByClause>;
|
|
10360
|
-
User__c?: InputMaybe<OrderByClause>;
|
|
10361
|
-
User__r?: InputMaybe<User_OrderBy>;
|
|
10362
|
-
};
|
|
10363
|
-
|
|
10364
10547
|
export type Tenant__C_Owner_Filters = {
|
|
10365
10548
|
Group?: InputMaybe<Group_Filter>;
|
|
10366
10549
|
Name?: InputMaybe<Name_Filter>;
|
|
10367
10550
|
User?: InputMaybe<User_Filter>;
|
|
10368
10551
|
};
|
|
10369
10552
|
|
|
10370
|
-
export type Tenant__C_Owner_OrderBys = {
|
|
10371
|
-
Group?: InputMaybe<Group_OrderBy>;
|
|
10372
|
-
Name?: InputMaybe<Name_OrderBy>;
|
|
10373
|
-
User?: InputMaybe<User_OrderBy>;
|
|
10374
|
-
};
|
|
10375
|
-
|
|
10376
10553
|
export type TextAreaOperators = {
|
|
10377
10554
|
eq?: InputMaybe<Scalars["TextArea"]["input"]>;
|
|
10378
10555
|
gt?: InputMaybe<Scalars["TextArea"]["input"]>;
|
|
@@ -10442,6 +10619,7 @@ export type TopicAssignment_Filter = {
|
|
|
10442
10619
|
EntityType?: InputMaybe<StringOperators>;
|
|
10443
10620
|
Id?: InputMaybe<IdOperators>;
|
|
10444
10621
|
IsDeleted?: InputMaybe<BooleanOperators>;
|
|
10622
|
+
NetworkId?: InputMaybe<IdOperators>;
|
|
10445
10623
|
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
10446
10624
|
Topic?: InputMaybe<Topic_Filter>;
|
|
10447
10625
|
TopicId?: InputMaybe<IdOperators>;
|
|
@@ -10458,6 +10636,7 @@ export type Topic_Filter = {
|
|
|
10458
10636
|
Id?: InputMaybe<IdOperators>;
|
|
10459
10637
|
ManagedTopicType?: InputMaybe<StringOperators>;
|
|
10460
10638
|
Name?: InputMaybe<StringOperators>;
|
|
10639
|
+
NetworkId?: InputMaybe<IdOperators>;
|
|
10461
10640
|
SystemModstamp?: InputMaybe<DateTimeOperators>;
|
|
10462
10641
|
TalkingAbout?: InputMaybe<IntegerOperators>;
|
|
10463
10642
|
and?: InputMaybe<Array<InputMaybe<Topic_Filter>>>;
|
|
@@ -10499,9 +10678,14 @@ export const UiBehavior = {
|
|
|
10499
10678
|
Readonly: "READONLY",
|
|
10500
10679
|
Required: "REQUIRED",
|
|
10501
10680
|
} as const;
|
|
10502
|
-
|
|
10503
10681
|
export type UiBehavior = (typeof UiBehavior)[keyof typeof UiBehavior];
|
|
10504
10682
|
|
|
10683
|
+
export const Unit = {
|
|
10684
|
+
Km: "KM",
|
|
10685
|
+
Mi: "MI",
|
|
10686
|
+
} as const;
|
|
10687
|
+
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
10688
|
+
|
|
10505
10689
|
export type UnstructuredStorageSpace_Filter = {
|
|
10506
10690
|
ApplicationName?: InputMaybe<StringOperators>;
|
|
10507
10691
|
Attribute1?: InputMaybe<StringOperators>;
|
|
@@ -11385,135 +11569,10 @@ export type WorkOrder_Owner_Filters = {
|
|
|
11385
11569
|
User?: InputMaybe<User_Filter>;
|
|
11386
11570
|
};
|
|
11387
11571
|
|
|
11388
|
-
export type
|
|
11389
|
-
|
|
11390
|
-
|
|
11391
|
-
|
|
11392
|
-
query: {
|
|
11393
|
-
Application__c?: {
|
|
11394
|
-
edges?: Array<{
|
|
11395
|
-
node?: {
|
|
11396
|
-
Id: string;
|
|
11397
|
-
Name?: { value?: string | null } | null;
|
|
11398
|
-
User__r?: {
|
|
11399
|
-
FirstName?: { value?: string | null } | null;
|
|
11400
|
-
LastName?: { value?: string | null } | null;
|
|
11401
|
-
} | null;
|
|
11402
|
-
Property__r?: {
|
|
11403
|
-
Name?: { value?: string | null } | null;
|
|
11404
|
-
Address__c?: { value?: string | null } | null;
|
|
11405
|
-
} | null;
|
|
11406
|
-
Start_Date__c?: { value?: string | null } | null;
|
|
11407
|
-
Status__c?: { value?: string | null } | null;
|
|
11408
|
-
Employment__c?: { value?: string | null } | null;
|
|
11409
|
-
References__c?: { value?: string | null } | null;
|
|
11410
|
-
} | null;
|
|
11411
|
-
} | null> | null;
|
|
11412
|
-
} | null;
|
|
11413
|
-
};
|
|
11414
|
-
};
|
|
11415
|
-
};
|
|
11416
|
-
|
|
11417
|
-
export type UpdateApplicationStatusMutationVariables = Exact<{
|
|
11418
|
-
input: Application__CUpdateInput;
|
|
11419
|
-
}>;
|
|
11420
|
-
|
|
11421
|
-
export type UpdateApplicationStatusMutation = {
|
|
11422
|
-
uiapi: {
|
|
11423
|
-
Application__cUpdate?: {
|
|
11424
|
-
success?: boolean | null;
|
|
11425
|
-
Record?: { Id: string; Status__c?: { value?: string | null } | null } | null;
|
|
11426
|
-
} | null;
|
|
11427
|
-
};
|
|
11428
|
-
};
|
|
11429
|
-
|
|
11430
|
-
export type GetMaintenanceRequestsQueryVariables = Exact<{
|
|
11431
|
-
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11432
|
-
}>;
|
|
11433
|
-
|
|
11434
|
-
export type GetMaintenanceRequestsQuery = {
|
|
11435
|
-
uiapi: {
|
|
11436
|
-
query: {
|
|
11437
|
-
Maintenance_Request__c?: {
|
|
11438
|
-
edges?: Array<{
|
|
11439
|
-
node?: {
|
|
11440
|
-
Id: string;
|
|
11441
|
-
Name?: { value?: string | null } | null;
|
|
11442
|
-
Property__r?: { Address__c?: { value?: string | null } | null } | null;
|
|
11443
|
-
User__r?: { Name?: { value?: string | null } | null } | null;
|
|
11444
|
-
Type__c?: { value?: string | null } | null;
|
|
11445
|
-
Priority__c?: { value?: string | null } | null;
|
|
11446
|
-
Status__c?: { value?: string | null } | null;
|
|
11447
|
-
Description__c?: { value?: string | null } | null;
|
|
11448
|
-
Scheduled__c?: { value?: string | null } | null;
|
|
11449
|
-
} | null;
|
|
11450
|
-
} | null> | null;
|
|
11451
|
-
} | null;
|
|
11452
|
-
};
|
|
11453
|
-
};
|
|
11454
|
-
};
|
|
11455
|
-
|
|
11456
|
-
export type GetAllMaintenanceRequestsQueryVariables = Exact<{
|
|
11457
|
-
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11458
|
-
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
11459
|
-
}>;
|
|
11460
|
-
|
|
11461
|
-
export type GetAllMaintenanceRequestsQuery = {
|
|
11462
|
-
uiapi: {
|
|
11463
|
-
query: {
|
|
11464
|
-
Maintenance_Request__c?: {
|
|
11465
|
-
edges?: Array<{
|
|
11466
|
-
node?: {
|
|
11467
|
-
Id: string;
|
|
11468
|
-
Name?: { value?: string | null } | null;
|
|
11469
|
-
Description__c?: { value?: string | null } | null;
|
|
11470
|
-
Type__c?: { value?: string | null } | null;
|
|
11471
|
-
Priority__c?: { value?: string | null } | null;
|
|
11472
|
-
Status__c?: { value?: string | null } | null;
|
|
11473
|
-
Scheduled__c?: { value?: string | null } | null;
|
|
11474
|
-
Property__r?: {
|
|
11475
|
-
Address__c?: { value?: string | null } | null;
|
|
11476
|
-
Name?: { value?: string | null } | null;
|
|
11477
|
-
} | null;
|
|
11478
|
-
User__r?: { Name?: { value?: string | null } | null } | null;
|
|
11479
|
-
Assigned_Worker__r?: {
|
|
11480
|
-
Name?: { value?: string | null } | null;
|
|
11481
|
-
Employment_Type__c?: { value?: string | null } | null;
|
|
11482
|
-
} | null;
|
|
11483
|
-
ContentDocumentLinks?: {
|
|
11484
|
-
edges?: Array<{
|
|
11485
|
-
node?: {
|
|
11486
|
-
ContentDocument?: {
|
|
11487
|
-
LatestPublishedVersionId?: { value?: string | null } | null;
|
|
11488
|
-
} | null;
|
|
11489
|
-
} | null;
|
|
11490
|
-
} | null> | null;
|
|
11491
|
-
} | null;
|
|
11492
|
-
} | null;
|
|
11493
|
-
} | null> | null;
|
|
11494
|
-
pageInfo: { hasNextPage: boolean; endCursor?: string | null };
|
|
11495
|
-
} | null;
|
|
11496
|
-
};
|
|
11497
|
-
};
|
|
11498
|
-
};
|
|
11499
|
-
|
|
11500
|
-
export type UpdateMaintenanceStatusMutationVariables = Exact<{
|
|
11501
|
-
input: Maintenance_Request__CUpdateInput;
|
|
11502
|
-
}>;
|
|
11503
|
-
|
|
11504
|
-
export type UpdateMaintenanceStatusMutation = {
|
|
11505
|
-
uiapi: {
|
|
11506
|
-
Maintenance_Request__cUpdate?: {
|
|
11507
|
-
success?: boolean | null;
|
|
11508
|
-
Record?: { Id: string; Status__c?: { value?: string | null } | null } | null;
|
|
11509
|
-
} | null;
|
|
11510
|
-
};
|
|
11511
|
-
};
|
|
11512
|
-
|
|
11513
|
-
export type MaintenanceRequestsQueryVariables = Exact<{
|
|
11514
|
-
first: Scalars["Int"]["input"];
|
|
11515
|
-
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
11516
|
-
}>;
|
|
11572
|
+
export type MaintenanceRequestsQueryVariables = Exact<{
|
|
11573
|
+
first: Scalars["Int"]["input"];
|
|
11574
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
11575
|
+
}>;
|
|
11517
11576
|
|
|
11518
11577
|
export type MaintenanceRequestsQuery = {
|
|
11519
11578
|
uiapi: {
|
|
@@ -11579,6 +11638,14 @@ export type PropertyByIdQuery = {
|
|
|
11579
11638
|
Id: string;
|
|
11580
11639
|
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
11581
11640
|
Address__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
11641
|
+
Coordinates__Latitude__s?: {
|
|
11642
|
+
value?: number | null;
|
|
11643
|
+
displayValue?: string | null;
|
|
11644
|
+
} | null;
|
|
11645
|
+
Coordinates__Longitude__s?: {
|
|
11646
|
+
value?: number | null;
|
|
11647
|
+
displayValue?: string | null;
|
|
11648
|
+
} | null;
|
|
11582
11649
|
Type__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
11583
11650
|
Monthly_Rent__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
11584
11651
|
Bedrooms__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
@@ -11683,6 +11750,14 @@ export type PropertyListingsQuery = {
|
|
|
11683
11750
|
Property__r?: {
|
|
11684
11751
|
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
11685
11752
|
Address__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
11753
|
+
Coordinates__Latitude__s?: {
|
|
11754
|
+
value?: number | null;
|
|
11755
|
+
displayValue?: string | null;
|
|
11756
|
+
} | null;
|
|
11757
|
+
Coordinates__Longitude__s?: {
|
|
11758
|
+
value?: number | null;
|
|
11759
|
+
displayValue?: string | null;
|
|
11760
|
+
} | null;
|
|
11686
11761
|
Bedrooms__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
11687
11762
|
} | null;
|
|
11688
11763
|
} | null;
|
|
@@ -11828,316 +11903,3 @@ export type SearchAccountsQuery = {
|
|
|
11828
11903
|
};
|
|
11829
11904
|
};
|
|
11830
11905
|
};
|
|
11831
|
-
|
|
11832
|
-
export type DistinctApplicationStatusQueryVariables = Exact<{ [key: string]: never }>;
|
|
11833
|
-
|
|
11834
|
-
export type DistinctApplicationStatusQuery = {
|
|
11835
|
-
uiapi: {
|
|
11836
|
-
aggregate: {
|
|
11837
|
-
Application__c?: {
|
|
11838
|
-
edges?: Array<{
|
|
11839
|
-
node?: {
|
|
11840
|
-
aggregate?: {
|
|
11841
|
-
Status__c?: {
|
|
11842
|
-
value?: string | null;
|
|
11843
|
-
displayValue?: string | null;
|
|
11844
|
-
label?: string | null;
|
|
11845
|
-
} | null;
|
|
11846
|
-
} | null;
|
|
11847
|
-
} | null;
|
|
11848
|
-
} | null> | null;
|
|
11849
|
-
} | null;
|
|
11850
|
-
};
|
|
11851
|
-
};
|
|
11852
|
-
};
|
|
11853
|
-
|
|
11854
|
-
export type DistinctMaintenanceRequestPriorityQueryVariables = Exact<{ [key: string]: never }>;
|
|
11855
|
-
|
|
11856
|
-
export type DistinctMaintenanceRequestPriorityQuery = {
|
|
11857
|
-
uiapi: {
|
|
11858
|
-
aggregate: {
|
|
11859
|
-
Maintenance_Request__c?: {
|
|
11860
|
-
edges?: Array<{
|
|
11861
|
-
node?: {
|
|
11862
|
-
aggregate?: {
|
|
11863
|
-
Priority__c?: {
|
|
11864
|
-
value?: string | null;
|
|
11865
|
-
displayValue?: string | null;
|
|
11866
|
-
label?: string | null;
|
|
11867
|
-
} | null;
|
|
11868
|
-
} | null;
|
|
11869
|
-
} | null;
|
|
11870
|
-
} | null> | null;
|
|
11871
|
-
} | null;
|
|
11872
|
-
};
|
|
11873
|
-
};
|
|
11874
|
-
};
|
|
11875
|
-
|
|
11876
|
-
export type DistinctMaintenanceRequestStatusQueryVariables = Exact<{ [key: string]: never }>;
|
|
11877
|
-
|
|
11878
|
-
export type DistinctMaintenanceRequestStatusQuery = {
|
|
11879
|
-
uiapi: {
|
|
11880
|
-
aggregate: {
|
|
11881
|
-
Maintenance_Request__c?: {
|
|
11882
|
-
edges?: Array<{
|
|
11883
|
-
node?: {
|
|
11884
|
-
aggregate?: {
|
|
11885
|
-
Status__c?: {
|
|
11886
|
-
value?: string | null;
|
|
11887
|
-
displayValue?: string | null;
|
|
11888
|
-
label?: string | null;
|
|
11889
|
-
} | null;
|
|
11890
|
-
} | null;
|
|
11891
|
-
} | null;
|
|
11892
|
-
} | null> | null;
|
|
11893
|
-
} | null;
|
|
11894
|
-
};
|
|
11895
|
-
};
|
|
11896
|
-
};
|
|
11897
|
-
|
|
11898
|
-
export type DistinctMaintenanceRequestTypeQueryVariables = Exact<{ [key: string]: never }>;
|
|
11899
|
-
|
|
11900
|
-
export type DistinctMaintenanceRequestTypeQuery = {
|
|
11901
|
-
uiapi: {
|
|
11902
|
-
aggregate: {
|
|
11903
|
-
Maintenance_Request__c?: {
|
|
11904
|
-
edges?: Array<{
|
|
11905
|
-
node?: {
|
|
11906
|
-
aggregate?: {
|
|
11907
|
-
Type__c?: {
|
|
11908
|
-
value?: string | null;
|
|
11909
|
-
displayValue?: string | null;
|
|
11910
|
-
label?: string | null;
|
|
11911
|
-
} | null;
|
|
11912
|
-
} | null;
|
|
11913
|
-
} | null;
|
|
11914
|
-
} | null> | null;
|
|
11915
|
-
} | null;
|
|
11916
|
-
};
|
|
11917
|
-
};
|
|
11918
|
-
};
|
|
11919
|
-
|
|
11920
|
-
export type DistinctMaintenanceWorkerEmploymentTypeQueryVariables = Exact<{ [key: string]: never }>;
|
|
11921
|
-
|
|
11922
|
-
export type DistinctMaintenanceWorkerEmploymentTypeQuery = {
|
|
11923
|
-
uiapi: {
|
|
11924
|
-
aggregate: {
|
|
11925
|
-
Maintenance_Worker__c?: {
|
|
11926
|
-
edges?: Array<{
|
|
11927
|
-
node?: {
|
|
11928
|
-
aggregate?: {
|
|
11929
|
-
Employment_Type__c?: {
|
|
11930
|
-
value?: string | null;
|
|
11931
|
-
displayValue?: string | null;
|
|
11932
|
-
label?: string | null;
|
|
11933
|
-
} | null;
|
|
11934
|
-
} | null;
|
|
11935
|
-
} | null;
|
|
11936
|
-
} | null> | null;
|
|
11937
|
-
} | null;
|
|
11938
|
-
};
|
|
11939
|
-
};
|
|
11940
|
-
};
|
|
11941
|
-
|
|
11942
|
-
export type DistinctPropertyStatusQueryVariables = Exact<{ [key: string]: never }>;
|
|
11943
|
-
|
|
11944
|
-
export type DistinctPropertyStatusQuery = {
|
|
11945
|
-
uiapi: {
|
|
11946
|
-
aggregate: {
|
|
11947
|
-
Property__c?: {
|
|
11948
|
-
edges?: Array<{
|
|
11949
|
-
node?: {
|
|
11950
|
-
aggregate?: {
|
|
11951
|
-
Status__c?: {
|
|
11952
|
-
value?: string | null;
|
|
11953
|
-
displayValue?: string | null;
|
|
11954
|
-
label?: string | null;
|
|
11955
|
-
} | null;
|
|
11956
|
-
} | null;
|
|
11957
|
-
} | null;
|
|
11958
|
-
} | null> | null;
|
|
11959
|
-
} | null;
|
|
11960
|
-
};
|
|
11961
|
-
};
|
|
11962
|
-
};
|
|
11963
|
-
|
|
11964
|
-
export type DistinctPropertyTypeQueryVariables = Exact<{ [key: string]: never }>;
|
|
11965
|
-
|
|
11966
|
-
export type DistinctPropertyTypeQuery = {
|
|
11967
|
-
uiapi: {
|
|
11968
|
-
aggregate: {
|
|
11969
|
-
Property__c?: {
|
|
11970
|
-
edges?: Array<{
|
|
11971
|
-
node?: {
|
|
11972
|
-
aggregate?: {
|
|
11973
|
-
Type__c?: {
|
|
11974
|
-
value?: string | null;
|
|
11975
|
-
displayValue?: string | null;
|
|
11976
|
-
label?: string | null;
|
|
11977
|
-
} | null;
|
|
11978
|
-
} | null;
|
|
11979
|
-
} | null;
|
|
11980
|
-
} | null> | null;
|
|
11981
|
-
} | null;
|
|
11982
|
-
};
|
|
11983
|
-
};
|
|
11984
|
-
};
|
|
11985
|
-
|
|
11986
|
-
export type SearchApplicationsQueryVariables = Exact<{
|
|
11987
|
-
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
11988
|
-
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
11989
|
-
where?: InputMaybe<Application__C_Filter>;
|
|
11990
|
-
orderBy?: InputMaybe<Application__C_OrderBy>;
|
|
11991
|
-
}>;
|
|
11992
|
-
|
|
11993
|
-
export type SearchApplicationsQuery = {
|
|
11994
|
-
uiapi: {
|
|
11995
|
-
query: {
|
|
11996
|
-
Application__c?: {
|
|
11997
|
-
totalCount: number;
|
|
11998
|
-
edges?: Array<{
|
|
11999
|
-
node?: {
|
|
12000
|
-
Id: string;
|
|
12001
|
-
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
12002
|
-
Status__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12003
|
-
Start_Date__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12004
|
-
Employment__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12005
|
-
References__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12006
|
-
Property__r?: {
|
|
12007
|
-
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
12008
|
-
Address__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12009
|
-
} | null;
|
|
12010
|
-
User__r?: {
|
|
12011
|
-
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
12012
|
-
} | null;
|
|
12013
|
-
CreatedDate?: { value?: string | null; displayValue?: string | null } | null;
|
|
12014
|
-
} | null;
|
|
12015
|
-
} | null> | null;
|
|
12016
|
-
pageInfo: {
|
|
12017
|
-
hasNextPage: boolean;
|
|
12018
|
-
hasPreviousPage: boolean;
|
|
12019
|
-
endCursor?: string | null;
|
|
12020
|
-
startCursor?: string | null;
|
|
12021
|
-
};
|
|
12022
|
-
} | null;
|
|
12023
|
-
};
|
|
12024
|
-
};
|
|
12025
|
-
};
|
|
12026
|
-
|
|
12027
|
-
export type SearchMaintenanceRequestsQueryVariables = Exact<{
|
|
12028
|
-
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12029
|
-
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
12030
|
-
where?: InputMaybe<Maintenance_Request__C_Filter>;
|
|
12031
|
-
orderBy?: InputMaybe<Maintenance_Request__C_OrderBy>;
|
|
12032
|
-
}>;
|
|
12033
|
-
|
|
12034
|
-
export type SearchMaintenanceRequestsQuery = {
|
|
12035
|
-
uiapi: {
|
|
12036
|
-
query: {
|
|
12037
|
-
Maintenance_Request__c?: {
|
|
12038
|
-
totalCount: number;
|
|
12039
|
-
edges?: Array<{
|
|
12040
|
-
node?: {
|
|
12041
|
-
Id: string;
|
|
12042
|
-
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
12043
|
-
Description__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12044
|
-
Type__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12045
|
-
Priority__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12046
|
-
Status__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12047
|
-
Scheduled__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12048
|
-
Property__r?: {
|
|
12049
|
-
Address__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12050
|
-
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
12051
|
-
} | null;
|
|
12052
|
-
User__r?: {
|
|
12053
|
-
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
12054
|
-
} | null;
|
|
12055
|
-
} | null;
|
|
12056
|
-
} | null> | null;
|
|
12057
|
-
pageInfo: {
|
|
12058
|
-
hasNextPage: boolean;
|
|
12059
|
-
hasPreviousPage: boolean;
|
|
12060
|
-
endCursor?: string | null;
|
|
12061
|
-
startCursor?: string | null;
|
|
12062
|
-
};
|
|
12063
|
-
} | null;
|
|
12064
|
-
};
|
|
12065
|
-
};
|
|
12066
|
-
};
|
|
12067
|
-
|
|
12068
|
-
export type SearchMaintenanceWorkersQueryVariables = Exact<{
|
|
12069
|
-
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12070
|
-
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
12071
|
-
where?: InputMaybe<Maintenance_Worker__C_Filter>;
|
|
12072
|
-
orderBy?: InputMaybe<Maintenance_Worker__C_OrderBy>;
|
|
12073
|
-
}>;
|
|
12074
|
-
|
|
12075
|
-
export type SearchMaintenanceWorkersQuery = {
|
|
12076
|
-
uiapi: {
|
|
12077
|
-
query: {
|
|
12078
|
-
Maintenance_Worker__c?: {
|
|
12079
|
-
totalCount: number;
|
|
12080
|
-
edges?: Array<{
|
|
12081
|
-
node?: {
|
|
12082
|
-
Id: string;
|
|
12083
|
-
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
12084
|
-
Type__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12085
|
-
Employment_Type__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12086
|
-
Phone__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12087
|
-
Location__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12088
|
-
IsActive__c?: { value?: boolean | null; displayValue?: string | null } | null;
|
|
12089
|
-
Rating__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
12090
|
-
Hourly_Rate__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
12091
|
-
CreatedDate?: { value?: string | null; displayValue?: string | null } | null;
|
|
12092
|
-
} | null;
|
|
12093
|
-
} | null> | null;
|
|
12094
|
-
pageInfo: {
|
|
12095
|
-
hasNextPage: boolean;
|
|
12096
|
-
hasPreviousPage: boolean;
|
|
12097
|
-
endCursor?: string | null;
|
|
12098
|
-
startCursor?: string | null;
|
|
12099
|
-
};
|
|
12100
|
-
} | null;
|
|
12101
|
-
};
|
|
12102
|
-
};
|
|
12103
|
-
};
|
|
12104
|
-
|
|
12105
|
-
export type SearchPropertiesQueryVariables = Exact<{
|
|
12106
|
-
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
12107
|
-
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
12108
|
-
where?: InputMaybe<Property__C_Filter>;
|
|
12109
|
-
orderBy?: InputMaybe<Property__C_OrderBy>;
|
|
12110
|
-
}>;
|
|
12111
|
-
|
|
12112
|
-
export type SearchPropertiesQuery = {
|
|
12113
|
-
uiapi: {
|
|
12114
|
-
query: {
|
|
12115
|
-
Property__c?: {
|
|
12116
|
-
totalCount: number;
|
|
12117
|
-
edges?: Array<{
|
|
12118
|
-
node?: {
|
|
12119
|
-
Id: string;
|
|
12120
|
-
Name?: { value?: string | null; displayValue?: string | null } | null;
|
|
12121
|
-
Address__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12122
|
-
Status__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12123
|
-
Type__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12124
|
-
Monthly_Rent__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
12125
|
-
Bedrooms__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
12126
|
-
Bathrooms__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
12127
|
-
Description__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12128
|
-
Hero_Image__c?: { value?: string | null; displayValue?: string | null } | null;
|
|
12129
|
-
Sq_Ft__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
12130
|
-
Year_Built__c?: { value?: number | null; displayValue?: string | null } | null;
|
|
12131
|
-
CreatedDate?: { value?: string | null; displayValue?: string | null } | null;
|
|
12132
|
-
} | null;
|
|
12133
|
-
} | null> | null;
|
|
12134
|
-
pageInfo: {
|
|
12135
|
-
hasNextPage: boolean;
|
|
12136
|
-
hasPreviousPage: boolean;
|
|
12137
|
-
endCursor?: string | null;
|
|
12138
|
-
startCursor?: string | null;
|
|
12139
|
-
};
|
|
12140
|
-
} | null;
|
|
12141
|
-
};
|
|
12142
|
-
};
|
|
12143
|
-
};
|