@verma-consulting/common-library 0.1.18 → 0.1.19
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/index.d.mts +634 -1324
- package/dist/index.d.ts +634 -1324
- package/dist/index.js +459 -349
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +458 -348
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -263,6 +263,10 @@ interface PackageDimensionsInterface {
|
|
|
263
263
|
width?: number;
|
|
264
264
|
}
|
|
265
265
|
interface PriceInterface {
|
|
266
|
+
id?: string;
|
|
267
|
+
createdAt?: Date;
|
|
268
|
+
updatedAt?: Date;
|
|
269
|
+
deletedAt?: Date;
|
|
266
270
|
stripeId?: string;
|
|
267
271
|
active?: boolean;
|
|
268
272
|
lookupKey?: string;
|
|
@@ -348,14 +352,32 @@ interface PaymentInterface {
|
|
|
348
352
|
status?: string;
|
|
349
353
|
paymentStatus?: string;
|
|
350
354
|
currency: string;
|
|
355
|
+
receiptEmail?: string;
|
|
356
|
+
receiptNumber?: string;
|
|
357
|
+
receiptUrl?: string;
|
|
358
|
+
setupFutureUsage?: string;
|
|
351
359
|
amount?: number;
|
|
352
360
|
amountCapturable?: number;
|
|
353
361
|
amountReceived?: number;
|
|
354
362
|
applicationFeeAmount?: number;
|
|
363
|
+
canceledAt?: Date;
|
|
364
|
+
cancellationReason?: string;
|
|
365
|
+
captureMethod?: string;
|
|
366
|
+
confirmationMethod?: string;
|
|
355
367
|
statementDescriptor?: string;
|
|
356
368
|
statementDescriptorSuffix?: string;
|
|
369
|
+
calculatedStatementDescriptor?: string;
|
|
370
|
+
failureCode?: string;
|
|
371
|
+
failureMessage?: string;
|
|
372
|
+
confirm?: boolean;
|
|
373
|
+
paid?: boolean;
|
|
374
|
+
captured?: boolean;
|
|
375
|
+
disputed?: boolean;
|
|
357
376
|
livemode?: boolean;
|
|
358
|
-
|
|
377
|
+
automaticPaymentMethods?: AutomaticPaymentMethodsInterface;
|
|
378
|
+
amountDetails?: AmountDetailsInterface;
|
|
379
|
+
billingDetails?: BillingDetailsInterface;
|
|
380
|
+
shipping?: ShippingInterface;
|
|
359
381
|
stripeId?: string;
|
|
360
382
|
productId?: string;
|
|
361
383
|
subscriptionId?: string;
|
|
@@ -374,6 +396,161 @@ interface PaymentInterface {
|
|
|
374
396
|
createdBy?: UserInterface;
|
|
375
397
|
updatedBy?: UserInterface;
|
|
376
398
|
}
|
|
399
|
+
interface AutomaticPaymentMethodsInterface {
|
|
400
|
+
allowRedirects?: string;
|
|
401
|
+
enabled?: boolean;
|
|
402
|
+
}
|
|
403
|
+
interface AmountDetailsInterface {
|
|
404
|
+
discountAmount?: string;
|
|
405
|
+
shipping?: {
|
|
406
|
+
amount?: number | null;
|
|
407
|
+
fromPostalCode?: string | null;
|
|
408
|
+
toPostalCode?: string | null;
|
|
409
|
+
};
|
|
410
|
+
}
|
|
411
|
+
interface PaymentMethodInterface {
|
|
412
|
+
id?: string;
|
|
413
|
+
createdAt?: Date;
|
|
414
|
+
updatedAt?: Date;
|
|
415
|
+
deletedAt?: Date;
|
|
416
|
+
name?: string;
|
|
417
|
+
description?: string;
|
|
418
|
+
status?: string;
|
|
419
|
+
paymentMethodType?: string;
|
|
420
|
+
allowRedisplay?: string;
|
|
421
|
+
livemode?: boolean;
|
|
422
|
+
billingDetails?: BillingDetailsInterface;
|
|
423
|
+
stripeId?: string;
|
|
424
|
+
contents?: ContentInterface[];
|
|
425
|
+
clientId?: string;
|
|
426
|
+
client?: ClientInterface;
|
|
427
|
+
poolId?: string;
|
|
428
|
+
pool?: PoolInterface;
|
|
429
|
+
organizationId?: string;
|
|
430
|
+
organization?: OrganizationInterface;
|
|
431
|
+
createdById?: string;
|
|
432
|
+
updatedById?: string;
|
|
433
|
+
createdBy?: UserInterface;
|
|
434
|
+
updatedBy?: UserInterface;
|
|
435
|
+
}
|
|
436
|
+
interface StripeAddressInterface {
|
|
437
|
+
line1?: number | null;
|
|
438
|
+
line2?: string | null;
|
|
439
|
+
city?: string | null;
|
|
440
|
+
state?: string | null;
|
|
441
|
+
country?: string | null;
|
|
442
|
+
postalCode?: string | null;
|
|
443
|
+
}
|
|
444
|
+
interface BillingDetailsInterface {
|
|
445
|
+
name?: string;
|
|
446
|
+
email?: string;
|
|
447
|
+
phone?: string;
|
|
448
|
+
address?: StripeAddressInterface;
|
|
449
|
+
}
|
|
450
|
+
interface ShippingInterface {
|
|
451
|
+
name?: string;
|
|
452
|
+
carrier?: string;
|
|
453
|
+
phone?: string;
|
|
454
|
+
trackingNumber?: string;
|
|
455
|
+
address?: StripeAddressInterface;
|
|
456
|
+
}
|
|
457
|
+
interface RefundInterface {
|
|
458
|
+
id?: string;
|
|
459
|
+
createdAt?: Date;
|
|
460
|
+
updatedAt?: Date;
|
|
461
|
+
deletedAt?: Date;
|
|
462
|
+
name?: string;
|
|
463
|
+
description?: string;
|
|
464
|
+
status?: string;
|
|
465
|
+
currency?: string;
|
|
466
|
+
instructionsEmail?: string;
|
|
467
|
+
receiptNumber?: string;
|
|
468
|
+
refundStatus?: string;
|
|
469
|
+
reason?: string;
|
|
470
|
+
pendingReason?: string;
|
|
471
|
+
failureReason?: string;
|
|
472
|
+
sourceTransferReversal?: string;
|
|
473
|
+
transferReversal?: string;
|
|
474
|
+
amount?: number;
|
|
475
|
+
livemode?: boolean;
|
|
476
|
+
billingDetails?: BillingDetailsInterface;
|
|
477
|
+
stripeId?: string;
|
|
478
|
+
contents?: ContentInterface[];
|
|
479
|
+
clientId?: string;
|
|
480
|
+
client?: ClientInterface;
|
|
481
|
+
poolId?: string;
|
|
482
|
+
pool?: PoolInterface;
|
|
483
|
+
organizationId?: string;
|
|
484
|
+
organization?: OrganizationInterface;
|
|
485
|
+
createdById?: string;
|
|
486
|
+
updatedById?: string;
|
|
487
|
+
createdBy?: UserInterface;
|
|
488
|
+
updatedBy?: UserInterface;
|
|
489
|
+
}
|
|
490
|
+
interface DisputeInterface {
|
|
491
|
+
id?: string;
|
|
492
|
+
createdAt?: Date;
|
|
493
|
+
updatedAt?: Date;
|
|
494
|
+
deletedAt?: Date;
|
|
495
|
+
name?: string;
|
|
496
|
+
description?: string;
|
|
497
|
+
status?: string;
|
|
498
|
+
disputeStatus?: string;
|
|
499
|
+
currency?: string;
|
|
500
|
+
reason?: string;
|
|
501
|
+
amount?: number;
|
|
502
|
+
isChargeRefundable?: boolean;
|
|
503
|
+
livemode?: boolean;
|
|
504
|
+
evidence?: EvidenceInterface;
|
|
505
|
+
evidenceDetails?: EvidenceDetailsInterface;
|
|
506
|
+
stripeId?: string;
|
|
507
|
+
contents?: ContentInterface[];
|
|
508
|
+
clientId?: string;
|
|
509
|
+
client?: ClientInterface;
|
|
510
|
+
poolId?: string;
|
|
511
|
+
pool?: PoolInterface;
|
|
512
|
+
organizationId?: string;
|
|
513
|
+
organization?: OrganizationInterface;
|
|
514
|
+
createdById?: string;
|
|
515
|
+
updatedById?: string;
|
|
516
|
+
createdBy?: UserInterface;
|
|
517
|
+
updatedBy?: UserInterface;
|
|
518
|
+
}
|
|
519
|
+
interface EvidenceInterface {
|
|
520
|
+
accessActivityLog?: string | null;
|
|
521
|
+
billingAddress?: string | null;
|
|
522
|
+
cancellationPolicy?: string | null;
|
|
523
|
+
cancellationPolicyDisclosure?: string | null;
|
|
524
|
+
cancellationRebuttal?: string | null;
|
|
525
|
+
customerCommunication?: string | null;
|
|
526
|
+
customerEmailAddress?: string | null;
|
|
527
|
+
customerName?: string | null;
|
|
528
|
+
customerPurchaseIp?: string | null;
|
|
529
|
+
customerSignature?: string | null;
|
|
530
|
+
duplicateChargeDocumentation?: string | null;
|
|
531
|
+
duplicateChargeExplanation?: string | null;
|
|
532
|
+
duplicateChargeId?: string | null;
|
|
533
|
+
productDescription?: string | null;
|
|
534
|
+
receipt?: string | null;
|
|
535
|
+
refundPolicy?: string | null;
|
|
536
|
+
refundPolicyDisclosure?: string | null;
|
|
537
|
+
refundRefusalExplanation?: string | null;
|
|
538
|
+
serviceDate?: string | null;
|
|
539
|
+
serviceDocumentation?: string | null;
|
|
540
|
+
shippingAddress?: string | null;
|
|
541
|
+
shippingCarrier?: string | null;
|
|
542
|
+
shippingDate?: string | null;
|
|
543
|
+
shippingDocumentation?: string | null;
|
|
544
|
+
shippingTrackingNumber?: string | null;
|
|
545
|
+
uncategorizedFile?: string | null;
|
|
546
|
+
uncategorizedText?: string | null;
|
|
547
|
+
}
|
|
548
|
+
interface EvidenceDetailsInterface {
|
|
549
|
+
dueBy?: Date | null;
|
|
550
|
+
hasEvidence?: boolean;
|
|
551
|
+
pastDue?: boolean;
|
|
552
|
+
submissionCount?: number;
|
|
553
|
+
}
|
|
377
554
|
interface UsageInterface {
|
|
378
555
|
id?: string;
|
|
379
556
|
createdAt?: Date;
|
|
@@ -905,12 +1082,6 @@ interface PoolInterface {
|
|
|
905
1082
|
createdByLabel?: () => null;
|
|
906
1083
|
updatedByLabel?: () => null;
|
|
907
1084
|
}
|
|
908
|
-
interface PaymentMethodInterface {
|
|
909
|
-
stripeId?: string;
|
|
910
|
-
type?: string;
|
|
911
|
-
card?: CardInterface;
|
|
912
|
-
billingDetails?: AddressInterface;
|
|
913
|
-
}
|
|
914
1085
|
interface CardInterface {
|
|
915
1086
|
number?: string;
|
|
916
1087
|
cvc?: string;
|
|
@@ -2743,1381 +2914,520 @@ declare const defaults: {
|
|
|
2743
2914
|
};
|
|
2744
2915
|
};
|
|
2745
2916
|
|
|
2746
|
-
declare const
|
|
2917
|
+
declare const defaultTypes: {
|
|
2918
|
+
organizations: {
|
|
2919
|
+
name: string;
|
|
2920
|
+
website: string;
|
|
2921
|
+
industry: string;
|
|
2922
|
+
currency: string;
|
|
2923
|
+
linkedinUrl: string;
|
|
2924
|
+
facebookUrl: string;
|
|
2925
|
+
twitterUrl: string;
|
|
2926
|
+
angelUrl: string;
|
|
2927
|
+
crunchbaseUrl: string;
|
|
2928
|
+
};
|
|
2747
2929
|
users: {
|
|
2748
|
-
firstName:
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
role: {
|
|
2761
|
-
default: string;
|
|
2762
|
-
type: string;
|
|
2763
|
-
};
|
|
2764
|
-
status: {
|
|
2765
|
-
default: string;
|
|
2766
|
-
type: string;
|
|
2767
|
-
};
|
|
2768
|
-
userName: {
|
|
2769
|
-
default: string;
|
|
2770
|
-
type: string;
|
|
2771
|
-
};
|
|
2772
|
-
jobTitle: {
|
|
2773
|
-
default: string;
|
|
2774
|
-
type: string;
|
|
2775
|
-
};
|
|
2776
|
-
password: {
|
|
2777
|
-
default: string;
|
|
2778
|
-
type: string;
|
|
2779
|
-
};
|
|
2780
|
-
dateOfBirth: {
|
|
2781
|
-
default: null;
|
|
2782
|
-
type: string;
|
|
2783
|
-
};
|
|
2784
|
-
phone: {
|
|
2785
|
-
default: string;
|
|
2786
|
-
type: string;
|
|
2787
|
-
};
|
|
2788
|
-
permissions: {
|
|
2789
|
-
default: never[];
|
|
2790
|
-
type: string;
|
|
2791
|
-
};
|
|
2792
|
-
avatar: {
|
|
2793
|
-
default: null;
|
|
2794
|
-
type: string;
|
|
2795
|
-
};
|
|
2930
|
+
firstName: string;
|
|
2931
|
+
lastName: string;
|
|
2932
|
+
email: string;
|
|
2933
|
+
role: string;
|
|
2934
|
+
status: string;
|
|
2935
|
+
userName: string;
|
|
2936
|
+
jobTitle: string;
|
|
2937
|
+
password: string;
|
|
2938
|
+
dateOfBirth: string;
|
|
2939
|
+
phone: string;
|
|
2940
|
+
permissions: string;
|
|
2941
|
+
avatar: string;
|
|
2796
2942
|
notificationSettings: {
|
|
2797
|
-
dailyReports:
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
dealsClosing: {
|
|
2802
|
-
default: boolean;
|
|
2803
|
-
type: string;
|
|
2804
|
-
};
|
|
2805
|
-
deletionAlerts: {
|
|
2806
|
-
default: boolean;
|
|
2807
|
-
type: string;
|
|
2808
|
-
};
|
|
2809
|
-
device: {
|
|
2810
|
-
default: string;
|
|
2811
|
-
type: string;
|
|
2812
|
-
};
|
|
2943
|
+
dailyReports: string;
|
|
2944
|
+
dealsClosing: string;
|
|
2945
|
+
deletionAlerts: string;
|
|
2946
|
+
device: string;
|
|
2813
2947
|
};
|
|
2814
2948
|
platformSettings: {
|
|
2815
|
-
mode:
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
};
|
|
2819
|
-
language: {
|
|
2820
|
-
default: string;
|
|
2821
|
-
type: string;
|
|
2822
|
-
};
|
|
2823
|
-
currency: {
|
|
2824
|
-
default: string;
|
|
2825
|
-
type: string;
|
|
2826
|
-
};
|
|
2949
|
+
mode: string;
|
|
2950
|
+
language: string;
|
|
2951
|
+
currency: string;
|
|
2827
2952
|
};
|
|
2828
2953
|
};
|
|
2829
2954
|
clients: {
|
|
2830
|
-
name:
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
invoicePrefix: {
|
|
2863
|
-
default: string;
|
|
2864
|
-
type: string;
|
|
2865
|
-
};
|
|
2866
|
-
sicCode: {
|
|
2867
|
-
default: string;
|
|
2868
|
-
type: string;
|
|
2869
|
-
};
|
|
2870
|
-
clientType: {
|
|
2871
|
-
default: string;
|
|
2872
|
-
type: string;
|
|
2873
|
-
};
|
|
2874
|
-
currency: {
|
|
2875
|
-
default: string;
|
|
2876
|
-
type: string;
|
|
2877
|
-
};
|
|
2878
|
-
customerType: {
|
|
2879
|
-
default: string;
|
|
2880
|
-
type: string;
|
|
2881
|
-
};
|
|
2882
|
-
industry: {
|
|
2883
|
-
default: string;
|
|
2884
|
-
type: string;
|
|
2885
|
-
};
|
|
2886
|
-
annualRevenue: {
|
|
2887
|
-
default: number;
|
|
2888
|
-
type: string;
|
|
2889
|
-
};
|
|
2890
|
-
balance: {
|
|
2891
|
-
default: number;
|
|
2892
|
-
type: string;
|
|
2893
|
-
};
|
|
2894
|
-
nextInvoiceSequence: {
|
|
2895
|
-
default: number;
|
|
2896
|
-
type: string;
|
|
2897
|
-
};
|
|
2898
|
-
taxExempt: {
|
|
2899
|
-
default: string;
|
|
2900
|
-
type: string;
|
|
2901
|
-
};
|
|
2902
|
-
website: {
|
|
2903
|
-
default: string;
|
|
2904
|
-
type: string;
|
|
2905
|
-
};
|
|
2906
|
-
source: {
|
|
2907
|
-
default: string;
|
|
2908
|
-
type: string;
|
|
2909
|
-
};
|
|
2910
|
-
logoUrl: {
|
|
2911
|
-
default: string;
|
|
2912
|
-
type: string;
|
|
2913
|
-
};
|
|
2914
|
-
linkedinUrl: {
|
|
2915
|
-
default: string;
|
|
2916
|
-
type: string;
|
|
2917
|
-
};
|
|
2918
|
-
facebookUrl: {
|
|
2919
|
-
default: string;
|
|
2920
|
-
type: string;
|
|
2921
|
-
};
|
|
2922
|
-
twitterUrl: {
|
|
2923
|
-
default: string;
|
|
2924
|
-
type: string;
|
|
2925
|
-
};
|
|
2926
|
-
angelUrl: {
|
|
2927
|
-
default: string;
|
|
2928
|
-
type: string;
|
|
2929
|
-
};
|
|
2930
|
-
crunchbaseUrl: {
|
|
2931
|
-
default: string;
|
|
2932
|
-
type: string;
|
|
2933
|
-
};
|
|
2934
|
-
accountOwner: {
|
|
2935
|
-
default: string;
|
|
2936
|
-
type: string;
|
|
2937
|
-
};
|
|
2938
|
-
contacts: {
|
|
2939
|
-
default: string;
|
|
2940
|
-
type: string;
|
|
2941
|
-
};
|
|
2942
|
-
deals: {
|
|
2943
|
-
default: string;
|
|
2944
|
-
type: string;
|
|
2945
|
-
};
|
|
2946
|
-
invoices: {
|
|
2947
|
-
default: string;
|
|
2948
|
-
type: string;
|
|
2949
|
-
};
|
|
2950
|
-
engagements: {
|
|
2951
|
-
default: string;
|
|
2952
|
-
type: string;
|
|
2953
|
-
};
|
|
2954
|
-
tasks: {
|
|
2955
|
-
default: string;
|
|
2956
|
-
type: string;
|
|
2957
|
-
};
|
|
2955
|
+
name: string;
|
|
2956
|
+
description: string;
|
|
2957
|
+
status: string;
|
|
2958
|
+
email: string;
|
|
2959
|
+
individualName: string;
|
|
2960
|
+
businessName: string;
|
|
2961
|
+
phone: string;
|
|
2962
|
+
accountNumber: string;
|
|
2963
|
+
invoicePrefix: string;
|
|
2964
|
+
sicCode: string;
|
|
2965
|
+
clientType: string;
|
|
2966
|
+
currency: string;
|
|
2967
|
+
customerType: string;
|
|
2968
|
+
industry: string;
|
|
2969
|
+
annualRevenue: string;
|
|
2970
|
+
balance: string;
|
|
2971
|
+
nextInvoiceSequence: string;
|
|
2972
|
+
taxExempt: string;
|
|
2973
|
+
website: string;
|
|
2974
|
+
source: string;
|
|
2975
|
+
logoUrl: string;
|
|
2976
|
+
linkedinUrl: string;
|
|
2977
|
+
facebookUrl: string;
|
|
2978
|
+
twitterUrl: string;
|
|
2979
|
+
angelUrl: string;
|
|
2980
|
+
crunchbaseUrl: string;
|
|
2981
|
+
accountOwner: string;
|
|
2982
|
+
contacts: string;
|
|
2983
|
+
deals: string;
|
|
2984
|
+
invoices: string;
|
|
2985
|
+
engagements: string;
|
|
2986
|
+
tasks: string;
|
|
2958
2987
|
};
|
|
2959
|
-
|
|
2960
|
-
name:
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
default: string;
|
|
2974
|
-
type: string;
|
|
2975
|
-
};
|
|
2976
|
-
phone: {
|
|
2977
|
-
default: string;
|
|
2978
|
-
type: string;
|
|
2979
|
-
};
|
|
2980
|
-
role: {
|
|
2981
|
-
default: string;
|
|
2982
|
-
type: string;
|
|
2983
|
-
};
|
|
2984
|
-
linkedinUrl: {
|
|
2985
|
-
default: string;
|
|
2986
|
-
type: string;
|
|
2987
|
-
};
|
|
2988
|
-
twitterUrl: {
|
|
2989
|
-
default: string;
|
|
2990
|
-
type: string;
|
|
2991
|
-
};
|
|
2992
|
-
client: {
|
|
2993
|
-
default: string;
|
|
2994
|
-
type: string;
|
|
2995
|
-
};
|
|
2996
|
-
engagements: {
|
|
2997
|
-
default: string;
|
|
2998
|
-
type: string;
|
|
2999
|
-
};
|
|
3000
|
-
};
|
|
3001
|
-
inventories: {
|
|
3002
|
-
name: {
|
|
3003
|
-
default: string;
|
|
3004
|
-
type: string;
|
|
3005
|
-
};
|
|
3006
|
-
description: {
|
|
3007
|
-
default: string;
|
|
3008
|
-
type: string;
|
|
3009
|
-
};
|
|
3010
|
-
status: {
|
|
3011
|
-
default: string;
|
|
3012
|
-
type: string;
|
|
3013
|
-
};
|
|
3014
|
-
amount: {
|
|
3015
|
-
default: number;
|
|
3016
|
-
type: string;
|
|
3017
|
-
};
|
|
3018
|
-
quantity: {
|
|
3019
|
-
default: number;
|
|
3020
|
-
type: string;
|
|
3021
|
-
};
|
|
3022
|
-
};
|
|
3023
|
-
organizations: {
|
|
3024
|
-
name: {
|
|
3025
|
-
default: string;
|
|
3026
|
-
type: string;
|
|
3027
|
-
};
|
|
3028
|
-
website: {
|
|
3029
|
-
default: string;
|
|
3030
|
-
type: string;
|
|
3031
|
-
};
|
|
3032
|
-
industry: {
|
|
3033
|
-
default: string;
|
|
3034
|
-
type: string;
|
|
3035
|
-
};
|
|
3036
|
-
currency: {
|
|
3037
|
-
default: string;
|
|
3038
|
-
type: string;
|
|
3039
|
-
};
|
|
3040
|
-
linkedinUrl: {
|
|
3041
|
-
default: string;
|
|
3042
|
-
type: string;
|
|
3043
|
-
};
|
|
3044
|
-
facebookUrl: {
|
|
3045
|
-
default: string;
|
|
3046
|
-
type: string;
|
|
3047
|
-
};
|
|
3048
|
-
twitterUrl: {
|
|
3049
|
-
default: string;
|
|
3050
|
-
type: string;
|
|
3051
|
-
};
|
|
3052
|
-
angelUrl: {
|
|
3053
|
-
default: string;
|
|
3054
|
-
type: string;
|
|
3055
|
-
};
|
|
3056
|
-
crunchbaseUrl: {
|
|
3057
|
-
default: string;
|
|
3058
|
-
type: string;
|
|
3059
|
-
};
|
|
2988
|
+
tasks: {
|
|
2989
|
+
name: string;
|
|
2990
|
+
description: string;
|
|
2991
|
+
status: string;
|
|
2992
|
+
priority: string;
|
|
2993
|
+
dueDate: string;
|
|
2994
|
+
reminder: string;
|
|
2995
|
+
reminderDate: string;
|
|
2996
|
+
reminderTime: string;
|
|
2997
|
+
repeat: string;
|
|
2998
|
+
repeatDate: string;
|
|
2999
|
+
repeatTime: string;
|
|
3000
|
+
client: string;
|
|
3001
|
+
assignee: string;
|
|
3060
3002
|
};
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
default: string;
|
|
3076
|
-
type: string;
|
|
3077
|
-
};
|
|
3003
|
+
products: {
|
|
3004
|
+
name: string;
|
|
3005
|
+
description: string;
|
|
3006
|
+
status: string;
|
|
3007
|
+
productType: string;
|
|
3008
|
+
client: string;
|
|
3009
|
+
inventory: string;
|
|
3010
|
+
accountOwner: string;
|
|
3011
|
+
active: string;
|
|
3012
|
+
shippable: string;
|
|
3013
|
+
statementDescriptor: string;
|
|
3014
|
+
taxCode: string;
|
|
3015
|
+
unitLabel: string;
|
|
3016
|
+
url: string;
|
|
3078
3017
|
};
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
description: {
|
|
3085
|
-
default: string;
|
|
3086
|
-
type: string;
|
|
3087
|
-
};
|
|
3088
|
-
status: {
|
|
3089
|
-
default: string;
|
|
3090
|
-
type: string;
|
|
3091
|
-
};
|
|
3092
|
-
leadType: {
|
|
3093
|
-
default: string;
|
|
3094
|
-
type: string;
|
|
3095
|
-
};
|
|
3096
|
-
source: {
|
|
3097
|
-
default: string;
|
|
3098
|
-
type: string;
|
|
3099
|
-
};
|
|
3100
|
-
amount: {
|
|
3101
|
-
default: number;
|
|
3102
|
-
type: string;
|
|
3103
|
-
};
|
|
3104
|
-
projectedClosingDate: {
|
|
3105
|
-
default: null;
|
|
3106
|
-
type: string;
|
|
3107
|
-
};
|
|
3108
|
-
expectedRevenue: {
|
|
3109
|
-
default: number;
|
|
3110
|
-
type: string;
|
|
3111
|
-
};
|
|
3112
|
-
probability: {
|
|
3113
|
-
default: number;
|
|
3114
|
-
type: string;
|
|
3115
|
-
};
|
|
3116
|
-
nextStep: {
|
|
3117
|
-
default: string;
|
|
3118
|
-
type: string;
|
|
3119
|
-
};
|
|
3120
|
-
accountOwner: {
|
|
3121
|
-
default: string;
|
|
3122
|
-
type: string;
|
|
3123
|
-
};
|
|
3124
|
-
client: {
|
|
3125
|
-
default: string;
|
|
3126
|
-
type: string;
|
|
3127
|
-
};
|
|
3128
|
-
campaign: {
|
|
3129
|
-
default: string;
|
|
3130
|
-
type: string;
|
|
3131
|
-
};
|
|
3018
|
+
packageDimensions: {
|
|
3019
|
+
height: string;
|
|
3020
|
+
length: string;
|
|
3021
|
+
weight: string;
|
|
3022
|
+
width: string;
|
|
3132
3023
|
};
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
type: string;
|
|
3149
|
-
};
|
|
3150
|
-
source: {
|
|
3151
|
-
default: string;
|
|
3152
|
-
type: string;
|
|
3153
|
-
};
|
|
3154
|
-
amount: {
|
|
3155
|
-
default: number;
|
|
3156
|
-
type: string;
|
|
3157
|
-
};
|
|
3158
|
-
closingDate: {
|
|
3159
|
-
default: null;
|
|
3160
|
-
type: string;
|
|
3161
|
-
};
|
|
3162
|
-
expectedRevenue: {
|
|
3163
|
-
default: number;
|
|
3164
|
-
type: string;
|
|
3165
|
-
};
|
|
3166
|
-
probability: {
|
|
3167
|
-
default: number;
|
|
3168
|
-
type: string;
|
|
3169
|
-
};
|
|
3170
|
-
nextStep: {
|
|
3171
|
-
default: string;
|
|
3172
|
-
type: string;
|
|
3173
|
-
};
|
|
3174
|
-
accountOwner: {
|
|
3175
|
-
default: string;
|
|
3176
|
-
type: string;
|
|
3177
|
-
};
|
|
3178
|
-
client: {
|
|
3179
|
-
default: string;
|
|
3180
|
-
type: string;
|
|
3181
|
-
};
|
|
3182
|
-
campaign: {
|
|
3183
|
-
default: string;
|
|
3184
|
-
type: string;
|
|
3024
|
+
prices: {
|
|
3025
|
+
active: string;
|
|
3026
|
+
unitAmount: string;
|
|
3027
|
+
unitAmountDecimal: string;
|
|
3028
|
+
lookupKey: string;
|
|
3029
|
+
type: string;
|
|
3030
|
+
taxBehavior: string;
|
|
3031
|
+
currency: string;
|
|
3032
|
+
billingScheme: string;
|
|
3033
|
+
recurring: {
|
|
3034
|
+
intervalCount: string;
|
|
3035
|
+
interval: string;
|
|
3036
|
+
aggregateUsage: string;
|
|
3037
|
+
usageType: string;
|
|
3038
|
+
trialPeriodDays: string;
|
|
3185
3039
|
};
|
|
3186
3040
|
};
|
|
3187
|
-
|
|
3188
|
-
name:
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
default: string;
|
|
3194
|
-
type: string;
|
|
3195
|
-
};
|
|
3196
|
-
status: {
|
|
3197
|
-
default: string;
|
|
3198
|
-
type: string;
|
|
3199
|
-
};
|
|
3200
|
-
priority: {
|
|
3201
|
-
default: string;
|
|
3202
|
-
type: string;
|
|
3203
|
-
};
|
|
3204
|
-
startDate: {
|
|
3205
|
-
default: null;
|
|
3206
|
-
type: string;
|
|
3207
|
-
};
|
|
3208
|
-
endDate: {
|
|
3209
|
-
default: null;
|
|
3210
|
-
type: string;
|
|
3211
|
-
};
|
|
3212
|
-
campaignType: {
|
|
3213
|
-
default: string;
|
|
3214
|
-
type: string;
|
|
3215
|
-
};
|
|
3216
|
-
budgetedCost: {
|
|
3217
|
-
default: number;
|
|
3218
|
-
type: string;
|
|
3219
|
-
};
|
|
3220
|
-
expectedRevenue: {
|
|
3221
|
-
default: number;
|
|
3222
|
-
type: string;
|
|
3223
|
-
};
|
|
3224
|
-
actualCost: {
|
|
3225
|
-
default: number;
|
|
3226
|
-
type: string;
|
|
3227
|
-
};
|
|
3228
|
-
numbersSent: {
|
|
3229
|
-
default: number;
|
|
3230
|
-
type: string;
|
|
3231
|
-
};
|
|
3232
|
-
expectedResponse: {
|
|
3233
|
-
default: string;
|
|
3234
|
-
type: string;
|
|
3235
|
-
};
|
|
3236
|
-
accountOwner: {
|
|
3237
|
-
default: string;
|
|
3238
|
-
type: string;
|
|
3239
|
-
};
|
|
3240
|
-
leads: {
|
|
3241
|
-
default: string;
|
|
3242
|
-
type: string;
|
|
3243
|
-
};
|
|
3244
|
-
deals: {
|
|
3245
|
-
default: string;
|
|
3246
|
-
type: string;
|
|
3247
|
-
};
|
|
3041
|
+
inventories: {
|
|
3042
|
+
name: string;
|
|
3043
|
+
description: string;
|
|
3044
|
+
status: string;
|
|
3045
|
+
amount: string;
|
|
3046
|
+
quantity: string;
|
|
3248
3047
|
};
|
|
3249
3048
|
invoices: {
|
|
3250
|
-
name:
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
default: number;
|
|
3292
|
-
type: string;
|
|
3293
|
-
};
|
|
3294
|
-
amountPaid: {
|
|
3295
|
-
default: number;
|
|
3296
|
-
type: string;
|
|
3297
|
-
};
|
|
3298
|
-
amountRemaining: {
|
|
3299
|
-
default: number;
|
|
3300
|
-
type: string;
|
|
3301
|
-
};
|
|
3302
|
-
amountShipping: {
|
|
3303
|
-
default: number;
|
|
3304
|
-
type: string;
|
|
3305
|
-
};
|
|
3306
|
-
attemptCount: {
|
|
3307
|
-
default: number;
|
|
3308
|
-
type: string;
|
|
3309
|
-
};
|
|
3310
|
-
startingBalance: {
|
|
3311
|
-
default: number;
|
|
3312
|
-
type: string;
|
|
3313
|
-
};
|
|
3314
|
-
endingBalance: {
|
|
3315
|
-
default: number;
|
|
3316
|
-
type: string;
|
|
3317
|
-
};
|
|
3318
|
-
subtotal: {
|
|
3319
|
-
default: number;
|
|
3320
|
-
type: string;
|
|
3321
|
-
};
|
|
3322
|
-
subtotalExcludingTax: {
|
|
3323
|
-
default: number;
|
|
3324
|
-
type: string;
|
|
3325
|
-
};
|
|
3326
|
-
totalExcludingTax: {
|
|
3327
|
-
default: number;
|
|
3328
|
-
type: string;
|
|
3329
|
-
};
|
|
3330
|
-
tax: {
|
|
3331
|
-
default: number;
|
|
3332
|
-
type: string;
|
|
3333
|
-
};
|
|
3334
|
-
postPaymentCreditNotesAmount: {
|
|
3335
|
-
default: number;
|
|
3336
|
-
type: string;
|
|
3337
|
-
};
|
|
3338
|
-
prePaymentCreditNotesAmount: {
|
|
3339
|
-
default: number;
|
|
3340
|
-
type: string;
|
|
3341
|
-
};
|
|
3342
|
-
daysUntilDue: {
|
|
3343
|
-
default: number;
|
|
3344
|
-
type: string;
|
|
3345
|
-
};
|
|
3346
|
-
attempted: {
|
|
3347
|
-
default: boolean;
|
|
3348
|
-
type: string;
|
|
3349
|
-
};
|
|
3350
|
-
autoAdvance: {
|
|
3351
|
-
default: boolean;
|
|
3352
|
-
type: string;
|
|
3353
|
-
};
|
|
3354
|
-
billingReason: {
|
|
3355
|
-
default: string;
|
|
3356
|
-
type: string;
|
|
3357
|
-
};
|
|
3358
|
-
collectionMethod: {
|
|
3359
|
-
default: string;
|
|
3360
|
-
type: string;
|
|
3361
|
-
};
|
|
3362
|
-
customerEmail: {
|
|
3363
|
-
default: string;
|
|
3364
|
-
type: string;
|
|
3365
|
-
};
|
|
3366
|
-
customerPhone: {
|
|
3367
|
-
default: string;
|
|
3368
|
-
type: string;
|
|
3369
|
-
};
|
|
3370
|
-
customerTaxExempt: {
|
|
3371
|
-
default: string;
|
|
3372
|
-
type: string;
|
|
3373
|
-
};
|
|
3374
|
-
invoicePdf: {
|
|
3375
|
-
default: string;
|
|
3376
|
-
type: string;
|
|
3377
|
-
};
|
|
3378
|
-
lastFinalizationError: {
|
|
3379
|
-
default: string;
|
|
3380
|
-
type: string;
|
|
3381
|
-
};
|
|
3382
|
-
number: {
|
|
3383
|
-
default: null;
|
|
3384
|
-
type: string;
|
|
3385
|
-
};
|
|
3386
|
-
receiptNumber: {
|
|
3387
|
-
default: string;
|
|
3388
|
-
type: string;
|
|
3389
|
-
};
|
|
3390
|
-
livemode: {
|
|
3391
|
-
default: boolean;
|
|
3392
|
-
type: string;
|
|
3393
|
-
};
|
|
3394
|
-
paid: {
|
|
3395
|
-
default: boolean;
|
|
3396
|
-
type: string;
|
|
3397
|
-
};
|
|
3398
|
-
paidOutOfBand: {
|
|
3399
|
-
default: boolean;
|
|
3400
|
-
type: string;
|
|
3401
|
-
};
|
|
3402
|
-
client: {
|
|
3403
|
-
default: string;
|
|
3404
|
-
type: string;
|
|
3405
|
-
};
|
|
3406
|
-
accountOwner: {
|
|
3407
|
-
default: string;
|
|
3408
|
-
type: string;
|
|
3409
|
-
};
|
|
3410
|
-
deal: {
|
|
3411
|
-
default: string;
|
|
3412
|
-
type: string;
|
|
3413
|
-
};
|
|
3049
|
+
name: string;
|
|
3050
|
+
description: string;
|
|
3051
|
+
footer: string;
|
|
3052
|
+
status: string;
|
|
3053
|
+
currency: string;
|
|
3054
|
+
accountCountry: string;
|
|
3055
|
+
statementDescriptor: string;
|
|
3056
|
+
dueDate: string;
|
|
3057
|
+
nextPaymentAttempt: string;
|
|
3058
|
+
effectiveAt: string;
|
|
3059
|
+
amountDue: string;
|
|
3060
|
+
amountPaid: string;
|
|
3061
|
+
amountRemaining: string;
|
|
3062
|
+
amountShipping: string;
|
|
3063
|
+
attemptCount: string;
|
|
3064
|
+
startingBalance: string;
|
|
3065
|
+
endingBalance: string;
|
|
3066
|
+
subtotal: string;
|
|
3067
|
+
subtotalExcludingTax: string;
|
|
3068
|
+
totalExcludingTax: string;
|
|
3069
|
+
tax: string;
|
|
3070
|
+
postPaymentCreditNotesAmount: string;
|
|
3071
|
+
prePaymentCreditNotesAmount: string;
|
|
3072
|
+
daysUntilDue: string;
|
|
3073
|
+
attempted: string;
|
|
3074
|
+
autoAdvance: string;
|
|
3075
|
+
billingReason: string;
|
|
3076
|
+
collectionMethod: string;
|
|
3077
|
+
customerEmail: string;
|
|
3078
|
+
customerPhone: string;
|
|
3079
|
+
customerTaxExempt: string;
|
|
3080
|
+
invoicePdf: string;
|
|
3081
|
+
lastFinalizationError: string;
|
|
3082
|
+
number: string;
|
|
3083
|
+
receiptNumber: string;
|
|
3084
|
+
livemode: string;
|
|
3085
|
+
paid: string;
|
|
3086
|
+
paidOutOfBand: string;
|
|
3087
|
+
client: string;
|
|
3088
|
+
accountOwner: string;
|
|
3089
|
+
deal: string;
|
|
3414
3090
|
};
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3091
|
+
contacts: {
|
|
3092
|
+
name: string;
|
|
3093
|
+
description: string;
|
|
3094
|
+
status: string;
|
|
3095
|
+
email: string;
|
|
3096
|
+
phone: string;
|
|
3097
|
+
role: string;
|
|
3098
|
+
linkedinUrl: string;
|
|
3099
|
+
twitterUrl: string;
|
|
3100
|
+
client: string;
|
|
3101
|
+
engagements: string;
|
|
3424
3102
|
};
|
|
3425
3103
|
engagements: {
|
|
3426
|
-
name:
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
type: string;
|
|
3433
|
-
};
|
|
3434
|
-
status: {
|
|
3435
|
-
default: string;
|
|
3436
|
-
type: string;
|
|
3437
|
-
};
|
|
3438
|
-
engagementDate: {
|
|
3439
|
-
default: null;
|
|
3440
|
-
type: string;
|
|
3441
|
-
};
|
|
3442
|
-
client: {
|
|
3443
|
-
default: string;
|
|
3444
|
-
type: string;
|
|
3445
|
-
};
|
|
3446
|
-
contact: {
|
|
3447
|
-
default: string;
|
|
3448
|
-
type: string;
|
|
3449
|
-
};
|
|
3450
|
-
};
|
|
3451
|
-
pools: {
|
|
3452
|
-
name: {
|
|
3453
|
-
default: string;
|
|
3454
|
-
type: string;
|
|
3455
|
-
};
|
|
3456
|
-
description: {
|
|
3457
|
-
default: string;
|
|
3458
|
-
type: string;
|
|
3459
|
-
};
|
|
3460
|
-
status: {
|
|
3461
|
-
default: string;
|
|
3462
|
-
type: string;
|
|
3463
|
-
};
|
|
3104
|
+
name: string;
|
|
3105
|
+
description: string;
|
|
3106
|
+
status: string;
|
|
3107
|
+
engagementDate: string;
|
|
3108
|
+
client: string;
|
|
3109
|
+
contact: string;
|
|
3464
3110
|
};
|
|
3465
|
-
|
|
3466
|
-
name:
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
};
|
|
3482
|
-
client: {
|
|
3483
|
-
default: string;
|
|
3484
|
-
type: string;
|
|
3485
|
-
};
|
|
3486
|
-
inventory: {
|
|
3487
|
-
default: string;
|
|
3488
|
-
type: string;
|
|
3489
|
-
};
|
|
3490
|
-
accountOwner: {
|
|
3491
|
-
default: string;
|
|
3492
|
-
type: string;
|
|
3493
|
-
};
|
|
3494
|
-
active: {
|
|
3495
|
-
default: boolean;
|
|
3496
|
-
type: string;
|
|
3497
|
-
};
|
|
3498
|
-
shippable: {
|
|
3499
|
-
default: boolean;
|
|
3500
|
-
type: string;
|
|
3501
|
-
};
|
|
3502
|
-
statementDescriptor: {
|
|
3503
|
-
default: string;
|
|
3504
|
-
type: string;
|
|
3505
|
-
};
|
|
3506
|
-
taxCode: {
|
|
3507
|
-
default: null;
|
|
3508
|
-
type: string;
|
|
3509
|
-
};
|
|
3510
|
-
unitLabel: {
|
|
3511
|
-
default: null;
|
|
3512
|
-
type: string;
|
|
3513
|
-
};
|
|
3514
|
-
url: {
|
|
3515
|
-
default: string;
|
|
3516
|
-
type: string;
|
|
3517
|
-
};
|
|
3111
|
+
campaigns: {
|
|
3112
|
+
name: string;
|
|
3113
|
+
description: string;
|
|
3114
|
+
status: string;
|
|
3115
|
+
priority: string;
|
|
3116
|
+
startDate: string;
|
|
3117
|
+
endDate: string;
|
|
3118
|
+
campaignType: string;
|
|
3119
|
+
budgetedCost: string;
|
|
3120
|
+
expectedRevenue: string;
|
|
3121
|
+
actualCost: string;
|
|
3122
|
+
numbersSent: string;
|
|
3123
|
+
expectedResponse: string;
|
|
3124
|
+
accountOwner: string;
|
|
3125
|
+
leads: string;
|
|
3126
|
+
deals: string;
|
|
3518
3127
|
};
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
default: string;
|
|
3534
|
-
type: string;
|
|
3535
|
-
};
|
|
3536
|
-
type: {
|
|
3537
|
-
default: string;
|
|
3538
|
-
type: string;
|
|
3539
|
-
};
|
|
3540
|
-
taxBehavior: {
|
|
3541
|
-
default: string;
|
|
3542
|
-
type: string;
|
|
3543
|
-
};
|
|
3544
|
-
currency: {
|
|
3545
|
-
default: string;
|
|
3546
|
-
type: string;
|
|
3547
|
-
};
|
|
3548
|
-
billingScheme: {
|
|
3549
|
-
default: string;
|
|
3550
|
-
type: string;
|
|
3551
|
-
};
|
|
3552
|
-
recurring: {
|
|
3553
|
-
intervalCount: {
|
|
3554
|
-
default: number;
|
|
3555
|
-
type: string;
|
|
3556
|
-
};
|
|
3557
|
-
interval: {
|
|
3558
|
-
default: string;
|
|
3559
|
-
type: string;
|
|
3560
|
-
};
|
|
3561
|
-
aggregateUsage: {
|
|
3562
|
-
default: string;
|
|
3563
|
-
type: string;
|
|
3564
|
-
};
|
|
3565
|
-
usageType: {
|
|
3566
|
-
default: string;
|
|
3567
|
-
type: string;
|
|
3568
|
-
};
|
|
3569
|
-
trialPeriodDays: {
|
|
3570
|
-
default: number;
|
|
3571
|
-
type: string;
|
|
3572
|
-
};
|
|
3573
|
-
};
|
|
3128
|
+
leads: {
|
|
3129
|
+
name: string;
|
|
3130
|
+
description: string;
|
|
3131
|
+
status: string;
|
|
3132
|
+
leadType: string;
|
|
3133
|
+
source: string;
|
|
3134
|
+
amount: string;
|
|
3135
|
+
projectedClosingDate: string;
|
|
3136
|
+
expectedRevenue: string;
|
|
3137
|
+
probability: string;
|
|
3138
|
+
nextStep: string;
|
|
3139
|
+
accountOwner: string;
|
|
3140
|
+
client: string;
|
|
3141
|
+
campaign: string;
|
|
3574
3142
|
};
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
default: number;
|
|
3590
|
-
type: string;
|
|
3591
|
-
};
|
|
3143
|
+
deals: {
|
|
3144
|
+
name: string;
|
|
3145
|
+
description: string;
|
|
3146
|
+
status: string;
|
|
3147
|
+
dealType: string;
|
|
3148
|
+
source: string;
|
|
3149
|
+
amount: string;
|
|
3150
|
+
closingDate: string;
|
|
3151
|
+
expectedRevenue: string;
|
|
3152
|
+
probability: string;
|
|
3153
|
+
nextStep: string;
|
|
3154
|
+
accountOwner: string;
|
|
3155
|
+
client: string;
|
|
3156
|
+
campaign: string;
|
|
3592
3157
|
};
|
|
3593
3158
|
subscriptions: {
|
|
3594
|
-
name:
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
default: null;
|
|
3620
|
-
type: string;
|
|
3621
|
-
};
|
|
3622
|
-
currentPeriodStart: {
|
|
3623
|
-
default: null;
|
|
3624
|
-
type: string;
|
|
3625
|
-
};
|
|
3626
|
-
currentPeriodEnd: {
|
|
3627
|
-
default: null;
|
|
3628
|
-
type: string;
|
|
3629
|
-
};
|
|
3630
|
-
backdateStartDate: {
|
|
3631
|
-
default: null;
|
|
3632
|
-
type: string;
|
|
3633
|
-
};
|
|
3634
|
-
billingCycleAnchor: {
|
|
3635
|
-
default: null;
|
|
3636
|
-
type: string;
|
|
3637
|
-
};
|
|
3638
|
-
cancelAt: {
|
|
3639
|
-
default: null;
|
|
3640
|
-
type: string;
|
|
3641
|
-
};
|
|
3642
|
-
canceledAt: {
|
|
3643
|
-
default: null;
|
|
3644
|
-
type: string;
|
|
3645
|
-
};
|
|
3646
|
-
daysUntilDue: {
|
|
3647
|
-
default: number;
|
|
3648
|
-
type: string;
|
|
3649
|
-
};
|
|
3650
|
-
trialPeriodDays: {
|
|
3651
|
-
default: number;
|
|
3652
|
-
type: string;
|
|
3653
|
-
};
|
|
3654
|
-
applicationFeePercent: {
|
|
3655
|
-
default: number;
|
|
3656
|
-
type: string;
|
|
3657
|
-
};
|
|
3658
|
-
cancelAtPeriodEnd: {
|
|
3659
|
-
default: boolean;
|
|
3660
|
-
type: string;
|
|
3661
|
-
};
|
|
3662
|
-
trialFromPlan: {
|
|
3663
|
-
default: boolean;
|
|
3664
|
-
type: string;
|
|
3665
|
-
};
|
|
3666
|
-
offSession: {
|
|
3667
|
-
default: boolean;
|
|
3668
|
-
type: string;
|
|
3669
|
-
};
|
|
3670
|
-
nextPendingInvoiceItemInvoice: {
|
|
3671
|
-
default: null;
|
|
3672
|
-
type: string;
|
|
3673
|
-
};
|
|
3674
|
-
collectionMethod: {
|
|
3675
|
-
default: string;
|
|
3676
|
-
type: string;
|
|
3677
|
-
};
|
|
3678
|
-
missingPaymentMethod: {
|
|
3679
|
-
default: string;
|
|
3680
|
-
type: string;
|
|
3681
|
-
};
|
|
3682
|
-
client: {
|
|
3683
|
-
default: string;
|
|
3684
|
-
type: string;
|
|
3685
|
-
};
|
|
3686
|
-
deal: {
|
|
3687
|
-
default: string;
|
|
3688
|
-
type: string;
|
|
3689
|
-
};
|
|
3690
|
-
accountOwner: {
|
|
3691
|
-
default: string;
|
|
3692
|
-
type: string;
|
|
3693
|
-
};
|
|
3159
|
+
name: string;
|
|
3160
|
+
description: string;
|
|
3161
|
+
status: string;
|
|
3162
|
+
trialStart: string;
|
|
3163
|
+
trialEnd: string;
|
|
3164
|
+
startDate: string;
|
|
3165
|
+
endedAt: string;
|
|
3166
|
+
currentPeriodStart: string;
|
|
3167
|
+
currentPeriodEnd: string;
|
|
3168
|
+
backdateStartDate: string;
|
|
3169
|
+
billingCycleAnchor: string;
|
|
3170
|
+
cancelAt: string;
|
|
3171
|
+
canceledAt: string;
|
|
3172
|
+
daysUntilDue: string;
|
|
3173
|
+
trialPeriodDays: string;
|
|
3174
|
+
applicationFeePercent: string;
|
|
3175
|
+
cancelAtPeriodEnd: string;
|
|
3176
|
+
trialFromPlan: string;
|
|
3177
|
+
offSession: string;
|
|
3178
|
+
nextPendingInvoiceItemInvoice: string;
|
|
3179
|
+
collectionMethod: string;
|
|
3180
|
+
missingPaymentMethod: string;
|
|
3181
|
+
client: string;
|
|
3182
|
+
deal: string;
|
|
3183
|
+
accountOwner: string;
|
|
3694
3184
|
};
|
|
3695
3185
|
automaticTax: {
|
|
3696
|
-
enabled:
|
|
3697
|
-
default: boolean;
|
|
3698
|
-
type: string;
|
|
3699
|
-
};
|
|
3186
|
+
enabled: string;
|
|
3700
3187
|
liability: {
|
|
3701
|
-
account:
|
|
3702
|
-
default: string;
|
|
3703
|
-
type: string;
|
|
3704
|
-
};
|
|
3705
|
-
type: {
|
|
3706
|
-
default: string;
|
|
3707
|
-
type: string;
|
|
3708
|
-
};
|
|
3709
|
-
};
|
|
3710
|
-
status: {
|
|
3711
|
-
default: string;
|
|
3188
|
+
account: string;
|
|
3712
3189
|
type: string;
|
|
3713
3190
|
};
|
|
3191
|
+
status: string;
|
|
3714
3192
|
};
|
|
3715
3193
|
pauseCollection: {
|
|
3716
|
-
behavior:
|
|
3717
|
-
|
|
3718
|
-
type: string;
|
|
3719
|
-
};
|
|
3720
|
-
resumesAt: {
|
|
3721
|
-
default: null;
|
|
3722
|
-
type: string;
|
|
3723
|
-
};
|
|
3194
|
+
behavior: string;
|
|
3195
|
+
resumesAt: string;
|
|
3724
3196
|
};
|
|
3725
3197
|
cancellationDetails: {
|
|
3726
|
-
comment:
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
};
|
|
3730
|
-
feedback: {
|
|
3731
|
-
default: string;
|
|
3732
|
-
type: string;
|
|
3733
|
-
};
|
|
3734
|
-
reason: {
|
|
3735
|
-
default: string;
|
|
3736
|
-
type: string;
|
|
3737
|
-
};
|
|
3198
|
+
comment: string;
|
|
3199
|
+
feedback: string;
|
|
3200
|
+
reason: string;
|
|
3738
3201
|
};
|
|
3739
3202
|
trialSettings: {
|
|
3740
3203
|
endBehavior: {
|
|
3741
|
-
missingPaymentMethod:
|
|
3742
|
-
default: string;
|
|
3743
|
-
type: string;
|
|
3744
|
-
};
|
|
3745
|
-
};
|
|
3746
|
-
};
|
|
3747
|
-
payments: {
|
|
3748
|
-
name: {
|
|
3749
|
-
default: string;
|
|
3750
|
-
type: string;
|
|
3751
|
-
};
|
|
3752
|
-
description: {
|
|
3753
|
-
default: string;
|
|
3754
|
-
type: string;
|
|
3755
|
-
};
|
|
3756
|
-
status: {
|
|
3757
|
-
default: string;
|
|
3758
|
-
type: string;
|
|
3759
|
-
};
|
|
3760
|
-
paymentStatus: {
|
|
3761
|
-
default: string;
|
|
3762
|
-
type: string;
|
|
3763
|
-
};
|
|
3764
|
-
currency: {
|
|
3765
|
-
default: string;
|
|
3766
|
-
type: string;
|
|
3767
|
-
};
|
|
3768
|
-
amount: {
|
|
3769
|
-
default: number;
|
|
3770
|
-
type: string;
|
|
3771
|
-
};
|
|
3772
|
-
amountCapturable: {
|
|
3773
|
-
default: number;
|
|
3774
|
-
type: string;
|
|
3775
|
-
};
|
|
3776
|
-
amountReceived: {
|
|
3777
|
-
default: number;
|
|
3778
|
-
type: string;
|
|
3779
|
-
};
|
|
3780
|
-
applicationFeeAmount: {
|
|
3781
|
-
default: number;
|
|
3782
|
-
type: string;
|
|
3783
|
-
};
|
|
3784
|
-
statementDescriptor: {
|
|
3785
|
-
default: string;
|
|
3786
|
-
type: string;
|
|
3787
|
-
};
|
|
3788
|
-
statementDescriptorSuffix: {
|
|
3789
|
-
default: string;
|
|
3790
|
-
type: string;
|
|
3791
|
-
};
|
|
3792
|
-
livemode: {
|
|
3793
|
-
default: boolean;
|
|
3794
|
-
type: string;
|
|
3795
|
-
};
|
|
3796
|
-
receiptEmail: {
|
|
3797
|
-
default: string;
|
|
3798
|
-
type: string;
|
|
3799
|
-
};
|
|
3800
|
-
client: {
|
|
3801
|
-
default: string;
|
|
3802
|
-
type: string;
|
|
3803
|
-
};
|
|
3804
|
-
subscription: {
|
|
3805
|
-
default: string;
|
|
3806
|
-
type: string;
|
|
3807
|
-
};
|
|
3808
|
-
invoice: {
|
|
3809
|
-
default: string;
|
|
3810
|
-
type: string;
|
|
3811
|
-
};
|
|
3812
|
-
};
|
|
3813
|
-
reports: {
|
|
3814
|
-
label: {
|
|
3815
|
-
default: string;
|
|
3816
|
-
type: string;
|
|
3817
|
-
};
|
|
3818
|
-
star: {
|
|
3819
|
-
default: boolean;
|
|
3820
|
-
type: string;
|
|
3821
|
-
};
|
|
3822
|
-
chartType: {
|
|
3823
|
-
default: string;
|
|
3824
|
-
type: string;
|
|
3825
|
-
};
|
|
3826
|
-
frequency: {
|
|
3827
|
-
default: string;
|
|
3828
|
-
type: string;
|
|
3204
|
+
missingPaymentMethod: string;
|
|
3829
3205
|
};
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3206
|
+
};
|
|
3207
|
+
payments: {
|
|
3208
|
+
name: string;
|
|
3209
|
+
description: string;
|
|
3210
|
+
status: string;
|
|
3211
|
+
paymentStatus: string;
|
|
3212
|
+
currency: string;
|
|
3213
|
+
amount: string;
|
|
3214
|
+
amountCapturable: string;
|
|
3215
|
+
amountReceived: string;
|
|
3216
|
+
applicationFeeAmount: string;
|
|
3217
|
+
statementDescriptor: string;
|
|
3218
|
+
statementDescriptorSuffix: string;
|
|
3219
|
+
livemode: string;
|
|
3220
|
+
receiptEmail: string;
|
|
3221
|
+
client: string;
|
|
3222
|
+
subscription: string;
|
|
3223
|
+
invoice: string;
|
|
3224
|
+
automatic_payment_methods: {
|
|
3225
|
+
allow_redirects: string;
|
|
3226
|
+
enabled: string;
|
|
3833
3227
|
};
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3228
|
+
amount_details: {
|
|
3229
|
+
discount_amount: string;
|
|
3230
|
+
shipping: {
|
|
3231
|
+
amount: string;
|
|
3232
|
+
from_postal_code: string;
|
|
3233
|
+
to_postal_code: string;
|
|
3234
|
+
};
|
|
3235
|
+
tax: {
|
|
3236
|
+
total_tax_amount: string;
|
|
3237
|
+
};
|
|
3238
|
+
tip: {
|
|
3239
|
+
amount: string;
|
|
3240
|
+
};
|
|
3837
3241
|
};
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3242
|
+
};
|
|
3243
|
+
paymentMethods: {
|
|
3244
|
+
name: string;
|
|
3245
|
+
description: string;
|
|
3246
|
+
status: string;
|
|
3247
|
+
paymentMethodType: string;
|
|
3248
|
+
allowRedisplay: string;
|
|
3249
|
+
livemode: string;
|
|
3250
|
+
};
|
|
3251
|
+
billingDetails: {
|
|
3252
|
+
address: {
|
|
3253
|
+
city: string;
|
|
3254
|
+
country: string;
|
|
3255
|
+
line1: string;
|
|
3256
|
+
line2: string;
|
|
3257
|
+
postal_code: string;
|
|
3258
|
+
state: string;
|
|
3841
3259
|
};
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3260
|
+
email: string;
|
|
3261
|
+
name: string;
|
|
3262
|
+
phone: string;
|
|
3263
|
+
};
|
|
3264
|
+
shipping: {
|
|
3265
|
+
address: {
|
|
3266
|
+
city: string;
|
|
3267
|
+
country: string;
|
|
3268
|
+
line1: string;
|
|
3269
|
+
line2: string;
|
|
3270
|
+
postal_code: string;
|
|
3271
|
+
state: string;
|
|
3845
3272
|
};
|
|
3846
|
-
|
|
3847
|
-
|
|
3848
|
-
|
|
3273
|
+
carrier: string;
|
|
3274
|
+
name: string;
|
|
3275
|
+
phone: string;
|
|
3276
|
+
tracking_number: string;
|
|
3277
|
+
};
|
|
3278
|
+
refunds: {
|
|
3279
|
+
name: string;
|
|
3280
|
+
description: string;
|
|
3281
|
+
status: string;
|
|
3282
|
+
currency: string;
|
|
3283
|
+
instructionsEmail: string;
|
|
3284
|
+
receiptNumber: string;
|
|
3285
|
+
refundStatus: string;
|
|
3286
|
+
reason: string;
|
|
3287
|
+
pendingReason: string;
|
|
3288
|
+
failureReason: string;
|
|
3289
|
+
sourceTransferReversal: string;
|
|
3290
|
+
transferReversal: string;
|
|
3291
|
+
amount: string;
|
|
3292
|
+
};
|
|
3293
|
+
disputes: {
|
|
3294
|
+
name: string;
|
|
3295
|
+
description: string;
|
|
3296
|
+
status: string;
|
|
3297
|
+
currency: string;
|
|
3298
|
+
disputeStatus: string;
|
|
3299
|
+
reason: string;
|
|
3300
|
+
amount: string;
|
|
3301
|
+
isChargeRefundable: string;
|
|
3302
|
+
livemode: string;
|
|
3303
|
+
evidence: {
|
|
3304
|
+
access_activity_log: string;
|
|
3305
|
+
billing_address: string;
|
|
3306
|
+
cancellation_policy: string;
|
|
3307
|
+
cancellation_policy_disclosure: string;
|
|
3308
|
+
cancellation_rebuttal: string;
|
|
3309
|
+
customer_communication: string;
|
|
3310
|
+
customer_email_address: string;
|
|
3311
|
+
customer_name: string;
|
|
3312
|
+
customer_purchase_ip: string;
|
|
3313
|
+
customer_signature: string;
|
|
3314
|
+
duplicate_charge_documentation: string;
|
|
3315
|
+
duplicate_charge_explanation: string;
|
|
3316
|
+
duplicate_charge_id: string;
|
|
3317
|
+
product_description: string;
|
|
3318
|
+
receipt: string;
|
|
3319
|
+
refund_policy: string;
|
|
3320
|
+
refund_policy_disclosure: string;
|
|
3321
|
+
refund_refusal_explanation: string;
|
|
3322
|
+
service_date: string;
|
|
3323
|
+
service_documentation: string;
|
|
3324
|
+
shipping_address: string;
|
|
3325
|
+
shipping_carrier: string;
|
|
3326
|
+
shipping_date: string;
|
|
3327
|
+
shipping_documentation: string;
|
|
3328
|
+
shipping_tracking_number: string;
|
|
3329
|
+
uncategorized_file: string;
|
|
3330
|
+
uncategorized_text: string;
|
|
3849
3331
|
};
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3332
|
+
evidenceDetails: {
|
|
3333
|
+
due_by: string;
|
|
3334
|
+
has_evidence: string;
|
|
3335
|
+
past_due: string;
|
|
3336
|
+
submission_count: string;
|
|
3853
3337
|
};
|
|
3854
3338
|
};
|
|
3339
|
+
pools: {
|
|
3340
|
+
name: string;
|
|
3341
|
+
description: string;
|
|
3342
|
+
status: string;
|
|
3343
|
+
};
|
|
3344
|
+
issuer: {
|
|
3345
|
+
account: string;
|
|
3346
|
+
type: string;
|
|
3347
|
+
};
|
|
3348
|
+
activities: {
|
|
3349
|
+
label: string;
|
|
3350
|
+
value: string;
|
|
3351
|
+
modelName: string;
|
|
3352
|
+
path: string;
|
|
3353
|
+
};
|
|
3354
|
+
reports: {
|
|
3355
|
+
label: string;
|
|
3356
|
+
star: string;
|
|
3357
|
+
chartType: string;
|
|
3358
|
+
frequency: string;
|
|
3359
|
+
frequencyField: string;
|
|
3360
|
+
modelName: string;
|
|
3361
|
+
fieldName: string;
|
|
3362
|
+
operationType: string;
|
|
3363
|
+
calculation: string;
|
|
3364
|
+
calculationValue: string;
|
|
3365
|
+
};
|
|
3855
3366
|
lists: {
|
|
3856
|
-
label:
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
};
|
|
3864
|
-
dynamic: {
|
|
3865
|
-
default: boolean;
|
|
3866
|
-
type: string;
|
|
3867
|
-
};
|
|
3868
|
-
modelName: {
|
|
3869
|
-
default: string;
|
|
3870
|
-
type: string;
|
|
3871
|
-
};
|
|
3872
|
-
fieldName: {
|
|
3873
|
-
default: string;
|
|
3874
|
-
type: string;
|
|
3875
|
-
};
|
|
3876
|
-
calculation: {
|
|
3877
|
-
default: string;
|
|
3878
|
-
type: string;
|
|
3879
|
-
};
|
|
3880
|
-
calculationValue: {
|
|
3881
|
-
default: string;
|
|
3882
|
-
type: string;
|
|
3883
|
-
};
|
|
3367
|
+
label: string;
|
|
3368
|
+
star: string;
|
|
3369
|
+
dynamic: string;
|
|
3370
|
+
modelName: string;
|
|
3371
|
+
fieldName: string;
|
|
3372
|
+
calculation: string;
|
|
3373
|
+
calculationValue: string;
|
|
3884
3374
|
};
|
|
3885
3375
|
statistics: {
|
|
3886
|
-
label:
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
};
|
|
3894
|
-
modelName: {
|
|
3895
|
-
default: string;
|
|
3896
|
-
type: string;
|
|
3897
|
-
};
|
|
3898
|
-
fieldName: {
|
|
3899
|
-
default: string;
|
|
3900
|
-
type: string;
|
|
3901
|
-
};
|
|
3902
|
-
operationType: {
|
|
3903
|
-
default: string;
|
|
3904
|
-
type: string;
|
|
3905
|
-
};
|
|
3906
|
-
calculation: {
|
|
3907
|
-
default: string;
|
|
3908
|
-
type: string;
|
|
3909
|
-
};
|
|
3910
|
-
calculationValue: {
|
|
3911
|
-
default: string;
|
|
3912
|
-
type: string;
|
|
3913
|
-
};
|
|
3376
|
+
label: string;
|
|
3377
|
+
star: string;
|
|
3378
|
+
modelName: string;
|
|
3379
|
+
fieldName: string;
|
|
3380
|
+
operationType: string;
|
|
3381
|
+
calculation: string;
|
|
3382
|
+
calculationValue: string;
|
|
3914
3383
|
};
|
|
3915
3384
|
address: {
|
|
3916
|
-
streetNumber:
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
default: string;
|
|
3926
|
-
type: string;
|
|
3927
|
-
};
|
|
3928
|
-
state: {
|
|
3929
|
-
default: string;
|
|
3930
|
-
type: string;
|
|
3931
|
-
};
|
|
3932
|
-
country: {
|
|
3933
|
-
default: string;
|
|
3934
|
-
type: string;
|
|
3935
|
-
};
|
|
3936
|
-
countryCode: {
|
|
3937
|
-
default: string;
|
|
3938
|
-
type: string;
|
|
3939
|
-
};
|
|
3940
|
-
postalCode: {
|
|
3941
|
-
default: string;
|
|
3942
|
-
type: string;
|
|
3943
|
-
};
|
|
3944
|
-
latitude: {
|
|
3945
|
-
default: number;
|
|
3946
|
-
type: string;
|
|
3947
|
-
};
|
|
3948
|
-
longitude: {
|
|
3949
|
-
default: number;
|
|
3950
|
-
type: string;
|
|
3951
|
-
};
|
|
3385
|
+
streetNumber: string;
|
|
3386
|
+
streetName: string;
|
|
3387
|
+
city: string;
|
|
3388
|
+
state: string;
|
|
3389
|
+
country: string;
|
|
3390
|
+
countryCode: string;
|
|
3391
|
+
postalCode: string;
|
|
3392
|
+
latitude: string;
|
|
3393
|
+
longitude: string;
|
|
3952
3394
|
};
|
|
3953
3395
|
schema: {
|
|
3954
|
-
deleted:
|
|
3955
|
-
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
default: boolean;
|
|
3960
|
-
type: string;
|
|
3961
|
-
};
|
|
3962
|
-
key: {
|
|
3963
|
-
default: string;
|
|
3964
|
-
type: string;
|
|
3965
|
-
};
|
|
3966
|
-
type: {
|
|
3967
|
-
default: string;
|
|
3968
|
-
type: string;
|
|
3969
|
-
};
|
|
3970
|
-
options: {
|
|
3971
|
-
default: never[];
|
|
3972
|
-
type: string;
|
|
3973
|
-
};
|
|
3396
|
+
deleted: string;
|
|
3397
|
+
selected: string;
|
|
3398
|
+
key: string;
|
|
3399
|
+
type: string;
|
|
3400
|
+
options: string;
|
|
3974
3401
|
};
|
|
3975
3402
|
comments: {
|
|
3976
|
-
label:
|
|
3977
|
-
default: string;
|
|
3978
|
-
type: string;
|
|
3979
|
-
};
|
|
3980
|
-
};
|
|
3981
|
-
tasks: {
|
|
3982
|
-
name: {
|
|
3983
|
-
default: string;
|
|
3984
|
-
type: string;
|
|
3985
|
-
};
|
|
3986
|
-
description: {
|
|
3987
|
-
default: string;
|
|
3988
|
-
type: string;
|
|
3989
|
-
};
|
|
3990
|
-
status: {
|
|
3991
|
-
default: string;
|
|
3992
|
-
type: string;
|
|
3993
|
-
};
|
|
3994
|
-
priority: {
|
|
3995
|
-
default: string;
|
|
3996
|
-
type: string;
|
|
3997
|
-
};
|
|
3998
|
-
dueDate: {
|
|
3999
|
-
default: null;
|
|
4000
|
-
type: string;
|
|
4001
|
-
};
|
|
4002
|
-
reminder: {
|
|
4003
|
-
default: boolean;
|
|
4004
|
-
type: string;
|
|
4005
|
-
};
|
|
4006
|
-
reminderDate: {
|
|
4007
|
-
default: null;
|
|
4008
|
-
type: string;
|
|
4009
|
-
};
|
|
4010
|
-
reminderTime: {
|
|
4011
|
-
default: string;
|
|
4012
|
-
type: string;
|
|
4013
|
-
};
|
|
4014
|
-
repeat: {
|
|
4015
|
-
default: boolean;
|
|
4016
|
-
type: string;
|
|
4017
|
-
};
|
|
4018
|
-
repeatDate: {
|
|
4019
|
-
default: null;
|
|
4020
|
-
type: string;
|
|
4021
|
-
};
|
|
4022
|
-
repeatTime: {
|
|
4023
|
-
default: string;
|
|
4024
|
-
type: string;
|
|
4025
|
-
};
|
|
4026
|
-
client: {
|
|
4027
|
-
default: string;
|
|
4028
|
-
type: string;
|
|
4029
|
-
};
|
|
4030
|
-
assignee: {
|
|
4031
|
-
default: string;
|
|
4032
|
-
type: string;
|
|
4033
|
-
};
|
|
3403
|
+
label: string;
|
|
4034
3404
|
};
|
|
4035
3405
|
integrations: {
|
|
4036
|
-
name:
|
|
4037
|
-
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
|
-
|
|
4043
|
-
|
|
4044
|
-
|
|
4045
|
-
|
|
4046
|
-
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
type: string;
|
|
4051
|
-
};
|
|
4052
|
-
key: {
|
|
4053
|
-
default: string;
|
|
4054
|
-
type: string;
|
|
4055
|
-
};
|
|
4056
|
-
secret: {
|
|
4057
|
-
default: string;
|
|
4058
|
-
type: string;
|
|
4059
|
-
};
|
|
4060
|
-
logo: {
|
|
4061
|
-
default: string;
|
|
4062
|
-
type: string;
|
|
4063
|
-
};
|
|
4064
|
-
clientEmail: {
|
|
4065
|
-
default: string;
|
|
4066
|
-
type: string;
|
|
4067
|
-
};
|
|
4068
|
-
customerId: {
|
|
4069
|
-
default: string;
|
|
4070
|
-
type: string;
|
|
4071
|
-
};
|
|
4072
|
-
channelId: {
|
|
4073
|
-
default: string;
|
|
4074
|
-
type: string;
|
|
4075
|
-
};
|
|
4076
|
-
active: {
|
|
4077
|
-
default: boolean;
|
|
4078
|
-
type: string;
|
|
4079
|
-
};
|
|
4080
|
-
importBridge: {
|
|
4081
|
-
default: boolean;
|
|
4082
|
-
type: string;
|
|
4083
|
-
};
|
|
4084
|
-
exportBridge: {
|
|
4085
|
-
default: boolean;
|
|
4086
|
-
type: string;
|
|
4087
|
-
};
|
|
4088
|
-
dynamicBridge: {
|
|
4089
|
-
default: boolean;
|
|
4090
|
-
type: string;
|
|
4091
|
-
};
|
|
3406
|
+
name: string;
|
|
3407
|
+
title: string;
|
|
3408
|
+
description: string;
|
|
3409
|
+
category: string;
|
|
3410
|
+
key: string;
|
|
3411
|
+
secret: string;
|
|
3412
|
+
logo: string;
|
|
3413
|
+
clientEmail: string;
|
|
3414
|
+
customerId: string;
|
|
3415
|
+
channelId: string;
|
|
3416
|
+
active: string;
|
|
3417
|
+
importBridge: string;
|
|
3418
|
+
exportBridge: string;
|
|
3419
|
+
dynamicBridge: string;
|
|
4092
3420
|
};
|
|
4093
3421
|
operations: {
|
|
4094
|
-
label:
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
};
|
|
4098
|
-
description: {
|
|
4099
|
-
default: string;
|
|
4100
|
-
type: string;
|
|
4101
|
-
};
|
|
4102
|
-
star: {
|
|
4103
|
-
default: boolean;
|
|
4104
|
-
type: string;
|
|
4105
|
-
};
|
|
3422
|
+
label: string;
|
|
3423
|
+
description: string;
|
|
3424
|
+
star: string;
|
|
4106
3425
|
};
|
|
4107
3426
|
prompts: {
|
|
4108
|
-
label:
|
|
4109
|
-
|
|
4110
|
-
|
|
4111
|
-
};
|
|
4112
|
-
description: {
|
|
4113
|
-
default: string;
|
|
4114
|
-
type: string;
|
|
4115
|
-
};
|
|
4116
|
-
active: {
|
|
4117
|
-
default: boolean;
|
|
4118
|
-
type: string;
|
|
4119
|
-
};
|
|
3427
|
+
label: string;
|
|
3428
|
+
description: string;
|
|
3429
|
+
active: string;
|
|
4120
3430
|
};
|
|
4121
3431
|
};
|
|
4122
3432
|
|
|
4123
|
-
export { type ActivityInterface, type AddressInterface, type AnalyticsQueryInterface, AppMode, type AutomaticTaxInterface, CalculationType, type CampaignInterface, CampaignType, type CancellationDetailsInterface, type CardInterface, CategoryType, ChartType, type ChatInterface, type ClientInterface, type CommentInterface, type ContactInterface, type ContentInterface, ContentType, type CurrentRateInterface, type DealInterface, DealType, DeviceNotification, type EmailInterface, type EngagementInterface, FeatureType, type FileInterface, type FilterInterface, FilterType, FormFieldOrder, FormFieldType, FrequencyType, Gender, type GenericPayload, type IntegrationInterface, type InventoryInterface, type InvoiceInterface, LandingPath, LandingView, type LeadInterface, LeadType, type ListInterface, type MarketingFeatureInterface, type ModelInterface, ModelType, type Notation, type NotificationInterface, type OperationInterface, OrganizationFeatures, type OrganizationInterface, type OrganizationModelInterface, type PackageDimensionsInterface, type PauseCollectionInterface, type PaymentInterface, type PaymentMethodInterface, type PermissionInterface, PermissionType, PlatformLanguage, type PoolInterface, type PriceInterface, type PriceRecurringInterface, Priority, type ProductInterface, type PromptInterface, type QueryFilterInterface, type RegisterInterface, type ReportInterface, type SchemaInterface, type SentEmailInterface, SourceType, type StatisticInterface, type StripeAccountInterface, type StripeCustomer, type StripePaymentIntent, type SubscriptionInterface, type TagInterface, type TaskInterface, type TokenInterface, type UsageInterface, UsageType, type UserInterface, UserSettingType, type WaitlistInterface, accountType, action, automaticTaxStatus, billingReason, billingScheme, camelCaseToWords, capitalizeSentence, captureMethod, chatType, clientType, collectionMethod, commentRole, constants, currency, customerType,
|
|
3433
|
+
export { type ActivityInterface, type AddressInterface, type AmountDetailsInterface, type AnalyticsQueryInterface, AppMode, type AutomaticPaymentMethodsInterface, type AutomaticTaxInterface, type BillingDetailsInterface, CalculationType, type CampaignInterface, CampaignType, type CancellationDetailsInterface, type CardInterface, CategoryType, ChartType, type ChatInterface, type ClientInterface, type CommentInterface, type ContactInterface, type ContentInterface, ContentType, type CurrentRateInterface, type DealInterface, DealType, DeviceNotification, type DisputeInterface, type EmailInterface, type EngagementInterface, type EvidenceDetailsInterface, type EvidenceInterface, FeatureType, type FileInterface, type FilterInterface, FilterType, FormFieldOrder, FormFieldType, FrequencyType, Gender, type GenericPayload, type IntegrationInterface, type InventoryInterface, type InvoiceInterface, LandingPath, LandingView, type LeadInterface, LeadType, type ListInterface, type MarketingFeatureInterface, type ModelInterface, ModelType, type Notation, type NotificationInterface, type OperationInterface, OrganizationFeatures, type OrganizationInterface, type OrganizationModelInterface, type PackageDimensionsInterface, type PauseCollectionInterface, type PaymentInterface, type PaymentMethodInterface, type PermissionInterface, PermissionType, PlatformLanguage, type PoolInterface, type PriceInterface, type PriceRecurringInterface, Priority, type ProductInterface, type PromptInterface, type QueryFilterInterface, type RefundInterface, type RegisterInterface, type ReportInterface, type SchemaInterface, type SentEmailInterface, type ShippingInterface, SourceType, type StatisticInterface, type StripeAccountInterface, type StripeAddressInterface, type StripeCustomer, type StripePaymentIntent, type SubscriptionInterface, type TagInterface, type TaskInterface, type TokenInterface, type UsageInterface, UsageType, type UserInterface, UserSettingType, type WaitlistInterface, accountType, action, automaticTaxStatus, billingReason, billingScheme, camelCaseToWords, capitalizeSentence, captureMethod, chatType, clientType, collectionMethod, commentRole, constants, currency, customerType, defaultTypes, defaults, disputeReason, disputeStatus, formatPhoneNumber, getRandomArbitrary, grabAge, integrationType, isNumber, largeNumberLabel, missingPaymentMethod, normalizeKey, openInNewTab, operationType, organizationFilterType, paymentAllowRedirect, paymentCancellationReason, paymentFutureUsage, paymentMethodAllowReDisplay, paymentMethodType, paymentStatus, prettifyString, priceType, productType, refundFailureReason, refundPendingReason, refundReason, refundStatus, snakeToPretty, status, stripHtmlTags, subscriptionCancellationReason, taxBehavior, taxExempt, tiersMode, toCurrencyValue, userRole, userSource, userStatus, validEmail };
|