@verma-consulting/common-library 0.1.17 → 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.ts 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
- receiptEmail?: string;
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;
@@ -1485,6 +1656,7 @@ declare enum UsageType {
1485
1656
  declare enum ModelType {
1486
1657
  clients = "clients",
1487
1658
  tasks = "tasks",
1659
+ products = "products",
1488
1660
  inventories = "inventories",
1489
1661
  invoices = "invoices",
1490
1662
  leads = "leads",
@@ -1492,9 +1664,10 @@ declare enum ModelType {
1492
1664
  contacts = "contacts",
1493
1665
  engagements = "engagements",
1494
1666
  campaigns = "campaigns",
1495
- products = "products",
1496
1667
  subscriptions = "subscriptions",
1497
- payments = "payments"
1668
+ payments = "payments",
1669
+ paymentMethods = "paymentMethods",
1670
+ refunds = "refunds"
1498
1671
  }
1499
1672
  declare enum CategoryType {
1500
1673
  content = "content",
@@ -2528,6 +2701,7 @@ declare const defaults: {
2528
2701
  client: string;
2529
2702
  subscription: string;
2530
2703
  invoice: string;
2704
+ paymentMethod: string;
2531
2705
  automaticPaymentMethods: {
2532
2706
  allowRedirects: string;
2533
2707
  enabled: boolean;
@@ -2551,39 +2725,62 @@ declare const defaults: {
2551
2725
  name: string;
2552
2726
  description: string;
2553
2727
  status: string;
2728
+ paymentMethodType: string;
2729
+ allowRedisplay: string;
2554
2730
  livemode: boolean;
2555
2731
  };
2556
2732
  billingDetails: {
2733
+ name: string;
2734
+ email: null;
2735
+ phone: null;
2557
2736
  address: {
2558
- city: null;
2559
- country: null;
2560
2737
  line1: null;
2561
2738
  line2: null;
2562
- postalCode: null;
2739
+ city: null;
2563
2740
  state: null;
2741
+ country: null;
2742
+ postalCode: null;
2564
2743
  };
2565
- email: null;
2566
- name: string;
2567
- phone: null;
2568
2744
  };
2569
2745
  shipping: {
2746
+ name: string;
2747
+ carrier: string;
2748
+ phone: string;
2749
+ trackingNumber: string;
2570
2750
  address: {
2571
- city: null;
2572
- country: null;
2573
2751
  line1: null;
2574
2752
  line2: null;
2575
- postalCode: null;
2753
+ city: null;
2576
2754
  state: null;
2755
+ country: null;
2756
+ postalCode: null;
2577
2757
  };
2578
- carrier: string;
2758
+ };
2759
+ refunds: {
2579
2760
  name: string;
2580
- phone: string;
2581
- trackingNumber: string;
2761
+ description: string;
2762
+ status: string;
2763
+ currency: string;
2764
+ instructionsEmail: string;
2765
+ receiptNumber: string;
2766
+ refundStatus: string;
2767
+ reason: string;
2768
+ pendingReason: string;
2769
+ failureReason: string;
2770
+ sourceTransferReversal: string;
2771
+ transferReversal: string;
2772
+ amount: number;
2582
2773
  };
2583
2774
  disputes: {
2584
2775
  name: string;
2585
2776
  description: string;
2586
2777
  status: string;
2778
+ currency: string;
2779
+ disputeStatus: string;
2780
+ reason: string;
2781
+ amount: number;
2782
+ isChargeRefundable: boolean;
2783
+ livemode: boolean;
2587
2784
  evidence: {
2588
2785
  accessActivityLog: null;
2589
2786
  billingAddress: null;
@@ -2620,11 +2817,6 @@ declare const defaults: {
2620
2817
  submissionCount: number;
2621
2818
  };
2622
2819
  };
2623
- refunds: {
2624
- name: string;
2625
- description: string;
2626
- status: string;
2627
- };
2628
2820
  pools: {
2629
2821
  name: string;
2630
2822
  description: string;
@@ -2722,1381 +2914,520 @@ declare const defaults: {
2722
2914
  };
2723
2915
  };
2724
2916
 
2725
- declare const defaultsWithTypes: {
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
+ };
2726
2929
  users: {
2727
- firstName: {
2728
- default: string;
2729
- type: string;
2730
- };
2731
- lastName: {
2732
- default: string;
2733
- type: string;
2734
- };
2735
- email: {
2736
- default: string;
2737
- type: string;
2738
- };
2739
- role: {
2740
- default: string;
2741
- type: string;
2742
- };
2743
- status: {
2744
- default: string;
2745
- type: string;
2746
- };
2747
- userName: {
2748
- default: string;
2749
- type: string;
2750
- };
2751
- jobTitle: {
2752
- default: string;
2753
- type: string;
2754
- };
2755
- password: {
2756
- default: string;
2757
- type: string;
2758
- };
2759
- dateOfBirth: {
2760
- default: null;
2761
- type: string;
2762
- };
2763
- phone: {
2764
- default: string;
2765
- type: string;
2766
- };
2767
- permissions: {
2768
- default: never[];
2769
- type: string;
2770
- };
2771
- avatar: {
2772
- default: null;
2773
- type: string;
2774
- };
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;
2775
2942
  notificationSettings: {
2776
- dailyReports: {
2777
- default: boolean;
2778
- type: string;
2779
- };
2780
- dealsClosing: {
2781
- default: boolean;
2782
- type: string;
2783
- };
2784
- deletionAlerts: {
2785
- default: boolean;
2786
- type: string;
2787
- };
2788
- device: {
2789
- default: string;
2790
- type: string;
2791
- };
2943
+ dailyReports: string;
2944
+ dealsClosing: string;
2945
+ deletionAlerts: string;
2946
+ device: string;
2792
2947
  };
2793
2948
  platformSettings: {
2794
- mode: {
2795
- default: string;
2796
- type: string;
2797
- };
2798
- language: {
2799
- default: string;
2800
- type: string;
2801
- };
2802
- currency: {
2803
- default: string;
2804
- type: string;
2805
- };
2949
+ mode: string;
2950
+ language: string;
2951
+ currency: string;
2806
2952
  };
2807
2953
  };
2808
2954
  clients: {
2809
- name: {
2810
- default: string;
2811
- type: string;
2812
- };
2813
- description: {
2814
- default: string;
2815
- type: string;
2816
- };
2817
- status: {
2818
- default: string;
2819
- type: string;
2820
- };
2821
- email: {
2822
- default: string;
2823
- type: string;
2824
- };
2825
- individualName: {
2826
- default: string;
2827
- type: string;
2828
- };
2829
- businessName: {
2830
- default: string;
2831
- type: string;
2832
- };
2833
- phone: {
2834
- default: string;
2835
- type: string;
2836
- };
2837
- accountNumber: {
2838
- default: string;
2839
- type: string;
2840
- };
2841
- invoicePrefix: {
2842
- default: string;
2843
- type: string;
2844
- };
2845
- sicCode: {
2846
- default: string;
2847
- type: string;
2848
- };
2849
- clientType: {
2850
- default: string;
2851
- type: string;
2852
- };
2853
- currency: {
2854
- default: string;
2855
- type: string;
2856
- };
2857
- customerType: {
2858
- default: string;
2859
- type: string;
2860
- };
2861
- industry: {
2862
- default: string;
2863
- type: string;
2864
- };
2865
- annualRevenue: {
2866
- default: number;
2867
- type: string;
2868
- };
2869
- balance: {
2870
- default: number;
2871
- type: string;
2872
- };
2873
- nextInvoiceSequence: {
2874
- default: number;
2875
- type: string;
2876
- };
2877
- taxExempt: {
2878
- default: string;
2879
- type: string;
2880
- };
2881
- website: {
2882
- default: string;
2883
- type: string;
2884
- };
2885
- source: {
2886
- default: string;
2887
- type: string;
2888
- };
2889
- logoUrl: {
2890
- default: string;
2891
- type: string;
2892
- };
2893
- linkedinUrl: {
2894
- default: string;
2895
- type: string;
2896
- };
2897
- facebookUrl: {
2898
- default: string;
2899
- type: string;
2900
- };
2901
- twitterUrl: {
2902
- default: string;
2903
- type: string;
2904
- };
2905
- angelUrl: {
2906
- default: string;
2907
- type: string;
2908
- };
2909
- crunchbaseUrl: {
2910
- default: string;
2911
- type: string;
2912
- };
2913
- accountOwner: {
2914
- default: string;
2915
- type: string;
2916
- };
2917
- contacts: {
2918
- default: string;
2919
- type: string;
2920
- };
2921
- deals: {
2922
- default: string;
2923
- type: string;
2924
- };
2925
- invoices: {
2926
- default: string;
2927
- type: string;
2928
- };
2929
- engagements: {
2930
- default: string;
2931
- type: string;
2932
- };
2933
- tasks: {
2934
- default: string;
2935
- type: string;
2936
- };
2937
- };
2938
- contacts: {
2939
- name: {
2940
- default: string;
2941
- type: string;
2942
- };
2943
- description: {
2944
- default: string;
2945
- type: string;
2946
- };
2947
- status: {
2948
- default: string;
2949
- type: string;
2950
- };
2951
- email: {
2952
- default: string;
2953
- type: string;
2954
- };
2955
- phone: {
2956
- default: string;
2957
- type: string;
2958
- };
2959
- role: {
2960
- default: string;
2961
- type: string;
2962
- };
2963
- linkedinUrl: {
2964
- default: string;
2965
- type: string;
2966
- };
2967
- twitterUrl: {
2968
- default: string;
2969
- type: string;
2970
- };
2971
- client: {
2972
- default: string;
2973
- type: string;
2974
- };
2975
- engagements: {
2976
- default: string;
2977
- type: string;
2978
- };
2979
- };
2980
- inventories: {
2981
- name: {
2982
- default: string;
2983
- type: string;
2984
- };
2985
- description: {
2986
- default: string;
2987
- type: string;
2988
- };
2989
- status: {
2990
- default: string;
2991
- type: string;
2992
- };
2993
- amount: {
2994
- default: number;
2995
- type: string;
2996
- };
2997
- quantity: {
2998
- default: number;
2999
- type: string;
3000
- };
3001
- };
3002
- organizations: {
3003
- name: {
3004
- default: string;
3005
- type: string;
3006
- };
3007
- website: {
3008
- default: string;
3009
- type: string;
3010
- };
3011
- industry: {
3012
- default: string;
3013
- type: string;
3014
- };
3015
- currency: {
3016
- default: string;
3017
- type: string;
3018
- };
3019
- linkedinUrl: {
3020
- default: string;
3021
- type: string;
3022
- };
3023
- facebookUrl: {
3024
- default: string;
3025
- type: string;
3026
- };
3027
- twitterUrl: {
3028
- default: string;
3029
- type: string;
3030
- };
3031
- angelUrl: {
3032
- default: string;
3033
- type: string;
3034
- };
3035
- crunchbaseUrl: {
3036
- default: string;
3037
- type: string;
3038
- };
3039
- };
3040
- activities: {
3041
- label: {
3042
- default: string;
3043
- type: string;
3044
- };
3045
- value: {
3046
- default: string;
3047
- type: string;
3048
- };
3049
- modelName: {
3050
- default: string;
3051
- type: string;
3052
- };
3053
- path: {
3054
- default: string;
3055
- type: string;
3056
- };
3057
- };
3058
- leads: {
3059
- name: {
3060
- default: string;
3061
- type: string;
3062
- };
3063
- description: {
3064
- default: string;
3065
- type: string;
3066
- };
3067
- status: {
3068
- default: string;
3069
- type: string;
3070
- };
3071
- leadType: {
3072
- default: string;
3073
- type: string;
3074
- };
3075
- source: {
3076
- default: string;
3077
- type: string;
3078
- };
3079
- amount: {
3080
- default: number;
3081
- type: string;
3082
- };
3083
- projectedClosingDate: {
3084
- default: null;
3085
- type: string;
3086
- };
3087
- expectedRevenue: {
3088
- default: number;
3089
- type: string;
3090
- };
3091
- probability: {
3092
- default: number;
3093
- type: string;
3094
- };
3095
- nextStep: {
3096
- default: string;
3097
- type: string;
3098
- };
3099
- accountOwner: {
3100
- default: string;
3101
- type: string;
3102
- };
3103
- client: {
3104
- default: string;
3105
- type: string;
3106
- };
3107
- campaign: {
3108
- default: string;
3109
- type: string;
3110
- };
3111
- };
3112
- deals: {
3113
- name: {
3114
- default: string;
3115
- type: string;
3116
- };
3117
- description: {
3118
- default: string;
3119
- type: string;
3120
- };
3121
- status: {
3122
- default: string;
3123
- type: string;
3124
- };
3125
- dealType: {
3126
- default: string;
3127
- type: string;
3128
- };
3129
- source: {
3130
- default: string;
3131
- type: string;
3132
- };
3133
- amount: {
3134
- default: number;
3135
- type: string;
3136
- };
3137
- closingDate: {
3138
- default: null;
3139
- type: string;
3140
- };
3141
- expectedRevenue: {
3142
- default: number;
3143
- type: string;
3144
- };
3145
- probability: {
3146
- default: number;
3147
- type: string;
3148
- };
3149
- nextStep: {
3150
- default: string;
3151
- type: string;
3152
- };
3153
- accountOwner: {
3154
- default: string;
3155
- type: string;
3156
- };
3157
- client: {
3158
- default: string;
3159
- type: string;
3160
- };
3161
- campaign: {
3162
- default: string;
3163
- type: string;
3164
- };
3165
- };
3166
- campaigns: {
3167
- name: {
3168
- default: string;
3169
- type: string;
3170
- };
3171
- description: {
3172
- default: string;
3173
- type: string;
3174
- };
3175
- status: {
3176
- default: string;
3177
- type: string;
3178
- };
3179
- priority: {
3180
- default: string;
3181
- type: string;
3182
- };
3183
- startDate: {
3184
- default: null;
3185
- type: string;
3186
- };
3187
- endDate: {
3188
- default: null;
3189
- type: string;
3190
- };
3191
- campaignType: {
3192
- default: string;
3193
- type: string;
3194
- };
3195
- budgetedCost: {
3196
- default: number;
3197
- type: string;
3198
- };
3199
- expectedRevenue: {
3200
- default: number;
3201
- type: string;
3202
- };
3203
- actualCost: {
3204
- default: number;
3205
- type: string;
3206
- };
3207
- numbersSent: {
3208
- default: number;
3209
- type: string;
3210
- };
3211
- expectedResponse: {
3212
- default: string;
3213
- type: string;
3214
- };
3215
- accountOwner: {
3216
- default: string;
3217
- type: string;
3218
- };
3219
- leads: {
3220
- default: string;
3221
- type: string;
3222
- };
3223
- deals: {
3224
- default: string;
3225
- type: string;
3226
- };
3227
- };
3228
- invoices: {
3229
- name: {
3230
- default: string;
3231
- type: string;
3232
- };
3233
- description: {
3234
- default: string;
3235
- type: string;
3236
- };
3237
- footer: {
3238
- default: string;
3239
- type: string;
3240
- };
3241
- status: {
3242
- default: string;
3243
- type: string;
3244
- };
3245
- currency: {
3246
- default: string;
3247
- type: string;
3248
- };
3249
- accountCountry: {
3250
- default: string;
3251
- type: string;
3252
- };
3253
- statementDescriptor: {
3254
- default: string;
3255
- type: string;
3256
- };
3257
- dueDate: {
3258
- default: null;
3259
- type: string;
3260
- };
3261
- nextPaymentAttempt: {
3262
- default: null;
3263
- type: string;
3264
- };
3265
- effectiveAt: {
3266
- default: null;
3267
- type: string;
3268
- };
3269
- amountDue: {
3270
- default: number;
3271
- type: string;
3272
- };
3273
- amountPaid: {
3274
- default: number;
3275
- type: string;
3276
- };
3277
- amountRemaining: {
3278
- default: number;
3279
- type: string;
3280
- };
3281
- amountShipping: {
3282
- default: number;
3283
- type: string;
3284
- };
3285
- attemptCount: {
3286
- default: number;
3287
- type: string;
3288
- };
3289
- startingBalance: {
3290
- default: number;
3291
- type: string;
3292
- };
3293
- endingBalance: {
3294
- default: number;
3295
- type: string;
3296
- };
3297
- subtotal: {
3298
- default: number;
3299
- type: string;
3300
- };
3301
- subtotalExcludingTax: {
3302
- default: number;
3303
- type: string;
3304
- };
3305
- totalExcludingTax: {
3306
- default: number;
3307
- type: string;
3308
- };
3309
- tax: {
3310
- default: number;
3311
- type: string;
3312
- };
3313
- postPaymentCreditNotesAmount: {
3314
- default: number;
3315
- type: string;
3316
- };
3317
- prePaymentCreditNotesAmount: {
3318
- default: number;
3319
- type: string;
3320
- };
3321
- daysUntilDue: {
3322
- default: number;
3323
- type: string;
3324
- };
3325
- attempted: {
3326
- default: boolean;
3327
- type: string;
3328
- };
3329
- autoAdvance: {
3330
- default: boolean;
3331
- type: string;
3332
- };
3333
- billingReason: {
3334
- default: string;
3335
- type: string;
3336
- };
3337
- collectionMethod: {
3338
- default: string;
3339
- type: string;
3340
- };
3341
- customerEmail: {
3342
- default: string;
3343
- type: string;
3344
- };
3345
- customerPhone: {
3346
- default: string;
3347
- type: string;
3348
- };
3349
- customerTaxExempt: {
3350
- default: string;
3351
- type: string;
3352
- };
3353
- invoicePdf: {
3354
- default: string;
3355
- type: string;
3356
- };
3357
- lastFinalizationError: {
3358
- default: string;
3359
- type: string;
3360
- };
3361
- number: {
3362
- default: null;
3363
- type: string;
3364
- };
3365
- receiptNumber: {
3366
- default: string;
3367
- type: string;
3368
- };
3369
- livemode: {
3370
- default: boolean;
3371
- type: string;
3372
- };
3373
- paid: {
3374
- default: boolean;
3375
- type: string;
3376
- };
3377
- paidOutOfBand: {
3378
- default: boolean;
3379
- type: string;
3380
- };
3381
- client: {
3382
- default: string;
3383
- type: string;
3384
- };
3385
- accountOwner: {
3386
- default: string;
3387
- type: string;
3388
- };
3389
- deal: {
3390
- default: string;
3391
- type: string;
3392
- };
3393
- };
3394
- issuer: {
3395
- account: {
3396
- default: string;
3397
- type: string;
3398
- };
3399
- type: {
3400
- default: string;
3401
- type: string;
3402
- };
3403
- };
3404
- engagements: {
3405
- name: {
3406
- default: string;
3407
- type: string;
3408
- };
3409
- description: {
3410
- default: string;
3411
- type: string;
3412
- };
3413
- status: {
3414
- default: string;
3415
- type: string;
3416
- };
3417
- engagementDate: {
3418
- default: null;
3419
- type: string;
3420
- };
3421
- client: {
3422
- default: string;
3423
- type: string;
3424
- };
3425
- contact: {
3426
- default: string;
3427
- type: string;
3428
- };
3429
- };
3430
- pools: {
3431
- name: {
3432
- default: string;
3433
- type: string;
3434
- };
3435
- description: {
3436
- default: string;
3437
- type: string;
3438
- };
3439
- status: {
3440
- default: string;
3441
- type: string;
3442
- };
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;
3443
2987
  };
3444
- products: {
3445
- name: {
3446
- default: string;
3447
- type: string;
3448
- };
3449
- description: {
3450
- default: null;
3451
- type: string;
3452
- };
3453
- status: {
3454
- default: string;
3455
- type: string;
3456
- };
3457
- productType: {
3458
- default: string;
3459
- type: string;
3460
- };
3461
- client: {
3462
- default: string;
3463
- type: string;
3464
- };
3465
- inventory: {
3466
- default: string;
3467
- type: string;
3468
- };
3469
- accountOwner: {
3470
- default: string;
3471
- type: string;
3472
- };
3473
- active: {
3474
- default: boolean;
3475
- type: string;
3476
- };
3477
- shippable: {
3478
- default: boolean;
3479
- type: string;
3480
- };
3481
- statementDescriptor: {
3482
- default: string;
3483
- type: string;
3484
- };
3485
- taxCode: {
3486
- default: null;
3487
- type: string;
3488
- };
3489
- unitLabel: {
3490
- default: null;
3491
- type: string;
3492
- };
3493
- url: {
3494
- default: string;
3495
- type: string;
3496
- };
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;
3002
+ };
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;
3017
+ };
3018
+ packageDimensions: {
3019
+ height: string;
3020
+ length: string;
3021
+ weight: string;
3022
+ width: string;
3497
3023
  };
3498
3024
  prices: {
3499
- active: {
3500
- default: boolean;
3501
- type: string;
3502
- };
3503
- unitAmount: {
3504
- default: number;
3505
- type: string;
3506
- };
3507
- unitAmountDecimal: {
3508
- default: null;
3509
- type: string;
3510
- };
3511
- lookupKey: {
3512
- default: string;
3513
- type: string;
3514
- };
3515
- type: {
3516
- default: string;
3517
- type: string;
3518
- };
3519
- taxBehavior: {
3520
- default: string;
3521
- type: string;
3522
- };
3523
- currency: {
3524
- default: string;
3525
- type: string;
3526
- };
3527
- billingScheme: {
3528
- default: string;
3529
- type: string;
3530
- };
3025
+ active: string;
3026
+ unitAmount: string;
3027
+ unitAmountDecimal: string;
3028
+ lookupKey: string;
3029
+ type: string;
3030
+ taxBehavior: string;
3031
+ currency: string;
3032
+ billingScheme: string;
3531
3033
  recurring: {
3532
- intervalCount: {
3533
- default: number;
3534
- type: string;
3535
- };
3536
- interval: {
3537
- default: string;
3538
- type: string;
3539
- };
3540
- aggregateUsage: {
3541
- default: string;
3542
- type: string;
3543
- };
3544
- usageType: {
3545
- default: string;
3546
- type: string;
3547
- };
3548
- trialPeriodDays: {
3549
- default: number;
3550
- type: string;
3551
- };
3034
+ intervalCount: string;
3035
+ interval: string;
3036
+ aggregateUsage: string;
3037
+ usageType: string;
3038
+ trialPeriodDays: string;
3552
3039
  };
3553
3040
  };
3554
- packageDimensions: {
3555
- height: {
3556
- default: number;
3557
- type: string;
3558
- };
3559
- length: {
3560
- default: number;
3561
- type: string;
3562
- };
3563
- weight: {
3564
- default: number;
3565
- type: string;
3566
- };
3567
- width: {
3568
- default: number;
3569
- type: string;
3570
- };
3041
+ inventories: {
3042
+ name: string;
3043
+ description: string;
3044
+ status: string;
3045
+ amount: string;
3046
+ quantity: string;
3571
3047
  };
3572
- subscriptions: {
3573
- name: {
3574
- default: string;
3575
- type: string;
3576
- };
3577
- description: {
3578
- default: null;
3579
- type: string;
3580
- };
3581
- status: {
3582
- default: string;
3583
- type: string;
3584
- };
3585
- trialStart: {
3586
- default: null;
3587
- type: string;
3588
- };
3589
- trialEnd: {
3590
- default: null;
3591
- type: string;
3592
- };
3593
- startDate: {
3594
- default: null;
3595
- type: string;
3596
- };
3597
- endedAt: {
3598
- default: null;
3599
- type: string;
3600
- };
3601
- currentPeriodStart: {
3602
- default: null;
3603
- type: string;
3604
- };
3605
- currentPeriodEnd: {
3606
- default: null;
3607
- type: string;
3608
- };
3609
- backdateStartDate: {
3610
- default: null;
3611
- type: string;
3612
- };
3613
- billingCycleAnchor: {
3614
- default: null;
3615
- type: string;
3616
- };
3617
- cancelAt: {
3618
- default: null;
3619
- type: string;
3620
- };
3621
- canceledAt: {
3622
- default: null;
3623
- type: string;
3624
- };
3625
- daysUntilDue: {
3626
- default: number;
3627
- type: string;
3628
- };
3629
- trialPeriodDays: {
3630
- default: number;
3631
- type: string;
3632
- };
3633
- applicationFeePercent: {
3634
- default: number;
3635
- type: string;
3636
- };
3637
- cancelAtPeriodEnd: {
3638
- default: boolean;
3639
- type: string;
3640
- };
3641
- trialFromPlan: {
3642
- default: boolean;
3643
- type: string;
3644
- };
3645
- offSession: {
3646
- default: boolean;
3647
- type: string;
3648
- };
3649
- nextPendingInvoiceItemInvoice: {
3650
- default: null;
3651
- type: string;
3652
- };
3653
- collectionMethod: {
3654
- default: string;
3655
- type: string;
3656
- };
3657
- missingPaymentMethod: {
3658
- default: string;
3659
- type: string;
3660
- };
3661
- client: {
3662
- default: string;
3663
- type: string;
3664
- };
3665
- deal: {
3666
- default: string;
3667
- type: string;
3668
- };
3669
- accountOwner: {
3670
- default: string;
3671
- type: string;
3672
- };
3048
+ invoices: {
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;
3673
3090
  };
3674
- automaticTax: {
3675
- enabled: {
3676
- default: boolean;
3677
- type: string;
3678
- };
3679
- liability: {
3680
- account: {
3681
- default: string;
3682
- type: string;
3683
- };
3684
- type: {
3685
- default: string;
3686
- type: string;
3687
- };
3688
- };
3689
- status: {
3690
- default: string;
3691
- type: string;
3692
- };
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;
3693
3102
  };
3694
- pauseCollection: {
3695
- behavior: {
3696
- default: string;
3697
- type: string;
3698
- };
3699
- resumesAt: {
3700
- default: null;
3701
- type: string;
3702
- };
3103
+ engagements: {
3104
+ name: string;
3105
+ description: string;
3106
+ status: string;
3107
+ engagementDate: string;
3108
+ client: string;
3109
+ contact: string;
3703
3110
  };
3704
- cancellationDetails: {
3705
- comment: {
3706
- default: string;
3707
- type: string;
3708
- };
3709
- feedback: {
3710
- default: string;
3711
- type: string;
3712
- };
3713
- reason: {
3714
- default: string;
3715
- type: string;
3716
- };
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;
3717
3127
  };
3718
- trialSettings: {
3719
- endBehavior: {
3720
- missingPaymentMethod: {
3721
- default: string;
3722
- type: string;
3723
- };
3724
- };
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;
3725
3142
  };
3726
- payments: {
3727
- name: {
3728
- default: string;
3729
- type: string;
3730
- };
3731
- description: {
3732
- default: string;
3733
- type: string;
3734
- };
3735
- status: {
3736
- default: string;
3737
- type: string;
3738
- };
3739
- paymentStatus: {
3740
- default: string;
3741
- type: string;
3742
- };
3743
- currency: {
3744
- default: string;
3745
- type: string;
3746
- };
3747
- amount: {
3748
- default: number;
3749
- type: string;
3750
- };
3751
- amountCapturable: {
3752
- default: number;
3753
- type: string;
3754
- };
3755
- amountReceived: {
3756
- default: number;
3757
- type: string;
3758
- };
3759
- applicationFeeAmount: {
3760
- default: number;
3761
- type: string;
3762
- };
3763
- statementDescriptor: {
3764
- default: string;
3765
- type: string;
3766
- };
3767
- statementDescriptorSuffix: {
3768
- default: string;
3769
- type: string;
3770
- };
3771
- livemode: {
3772
- default: boolean;
3773
- type: string;
3774
- };
3775
- receiptEmail: {
3776
- default: string;
3777
- type: string;
3778
- };
3779
- client: {
3780
- default: string;
3781
- type: string;
3782
- };
3783
- subscription: {
3784
- default: string;
3785
- type: string;
3786
- };
3787
- invoice: {
3788
- default: string;
3789
- type: string;
3790
- };
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;
3791
3157
  };
3792
- reports: {
3793
- label: {
3794
- default: string;
3795
- type: string;
3796
- };
3797
- star: {
3798
- default: boolean;
3799
- type: string;
3800
- };
3801
- chartType: {
3802
- default: string;
3803
- type: string;
3804
- };
3805
- frequency: {
3806
- default: string;
3807
- type: string;
3808
- };
3809
- frequencyField: {
3810
- default: string;
3811
- type: string;
3812
- };
3813
- modelName: {
3814
- default: string;
3815
- type: string;
3816
- };
3817
- fieldName: {
3818
- default: string;
3819
- type: string;
3820
- };
3821
- operationType: {
3822
- default: string;
3823
- type: string;
3824
- };
3825
- calculation: {
3826
- default: string;
3827
- type: string;
3828
- };
3829
- calculationValue: {
3830
- default: string;
3158
+ subscriptions: {
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;
3184
+ };
3185
+ automaticTax: {
3186
+ enabled: string;
3187
+ liability: {
3188
+ account: string;
3831
3189
  type: string;
3832
3190
  };
3191
+ status: string;
3833
3192
  };
3834
- lists: {
3835
- label: {
3836
- default: string;
3837
- type: string;
3193
+ pauseCollection: {
3194
+ behavior: string;
3195
+ resumesAt: string;
3196
+ };
3197
+ cancellationDetails: {
3198
+ comment: string;
3199
+ feedback: string;
3200
+ reason: string;
3201
+ };
3202
+ trialSettings: {
3203
+ endBehavior: {
3204
+ missingPaymentMethod: string;
3838
3205
  };
3839
- star: {
3840
- default: boolean;
3841
- type: string;
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;
3842
3227
  };
3843
- dynamic: {
3844
- default: boolean;
3845
- type: string;
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
+ };
3846
3241
  };
3847
- modelName: {
3848
- default: string;
3849
- type: string;
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;
3850
3259
  };
3851
- fieldName: {
3852
- default: string;
3853
- type: string;
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;
3854
3272
  };
3855
- calculation: {
3856
- default: string;
3857
- type: string;
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;
3858
3331
  };
3859
- calculationValue: {
3860
- default: string;
3861
- type: string;
3332
+ evidenceDetails: {
3333
+ due_by: string;
3334
+ has_evidence: string;
3335
+ past_due: string;
3336
+ submission_count: string;
3862
3337
  };
3863
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
+ };
3366
+ lists: {
3367
+ label: string;
3368
+ star: string;
3369
+ dynamic: string;
3370
+ modelName: string;
3371
+ fieldName: string;
3372
+ calculation: string;
3373
+ calculationValue: string;
3374
+ };
3864
3375
  statistics: {
3865
- label: {
3866
- default: string;
3867
- type: string;
3868
- };
3869
- star: {
3870
- default: boolean;
3871
- type: string;
3872
- };
3873
- modelName: {
3874
- default: string;
3875
- type: string;
3876
- };
3877
- fieldName: {
3878
- default: string;
3879
- type: string;
3880
- };
3881
- operationType: {
3882
- default: string;
3883
- type: string;
3884
- };
3885
- calculation: {
3886
- default: string;
3887
- type: string;
3888
- };
3889
- calculationValue: {
3890
- default: string;
3891
- type: string;
3892
- };
3376
+ label: string;
3377
+ star: string;
3378
+ modelName: string;
3379
+ fieldName: string;
3380
+ operationType: string;
3381
+ calculation: string;
3382
+ calculationValue: string;
3893
3383
  };
3894
3384
  address: {
3895
- streetNumber: {
3896
- default: string;
3897
- type: string;
3898
- };
3899
- streetName: {
3900
- default: string;
3901
- type: string;
3902
- };
3903
- city: {
3904
- default: string;
3905
- type: string;
3906
- };
3907
- state: {
3908
- default: string;
3909
- type: string;
3910
- };
3911
- country: {
3912
- default: string;
3913
- type: string;
3914
- };
3915
- countryCode: {
3916
- default: string;
3917
- type: string;
3918
- };
3919
- postalCode: {
3920
- default: string;
3921
- type: string;
3922
- };
3923
- latitude: {
3924
- default: number;
3925
- type: string;
3926
- };
3927
- longitude: {
3928
- default: number;
3929
- type: string;
3930
- };
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;
3931
3394
  };
3932
3395
  schema: {
3933
- deleted: {
3934
- default: boolean;
3935
- type: string;
3936
- };
3937
- selected: {
3938
- default: boolean;
3939
- type: string;
3940
- };
3941
- key: {
3942
- default: string;
3943
- type: string;
3944
- };
3945
- type: {
3946
- default: string;
3947
- type: string;
3948
- };
3949
- options: {
3950
- default: never[];
3951
- type: string;
3952
- };
3396
+ deleted: string;
3397
+ selected: string;
3398
+ key: string;
3399
+ type: string;
3400
+ options: string;
3953
3401
  };
3954
3402
  comments: {
3955
- label: {
3956
- default: string;
3957
- type: string;
3958
- };
3959
- };
3960
- tasks: {
3961
- name: {
3962
- default: string;
3963
- type: string;
3964
- };
3965
- description: {
3966
- default: string;
3967
- type: string;
3968
- };
3969
- status: {
3970
- default: string;
3971
- type: string;
3972
- };
3973
- priority: {
3974
- default: string;
3975
- type: string;
3976
- };
3977
- dueDate: {
3978
- default: null;
3979
- type: string;
3980
- };
3981
- reminder: {
3982
- default: boolean;
3983
- type: string;
3984
- };
3985
- reminderDate: {
3986
- default: null;
3987
- type: string;
3988
- };
3989
- reminderTime: {
3990
- default: string;
3991
- type: string;
3992
- };
3993
- repeat: {
3994
- default: boolean;
3995
- type: string;
3996
- };
3997
- repeatDate: {
3998
- default: null;
3999
- type: string;
4000
- };
4001
- repeatTime: {
4002
- default: string;
4003
- type: string;
4004
- };
4005
- client: {
4006
- default: string;
4007
- type: string;
4008
- };
4009
- assignee: {
4010
- default: string;
4011
- type: string;
4012
- };
3403
+ label: string;
4013
3404
  };
4014
3405
  integrations: {
4015
- name: {
4016
- default: string;
4017
- type: string;
4018
- };
4019
- title: {
4020
- default: string;
4021
- type: string;
4022
- };
4023
- description: {
4024
- default: string;
4025
- type: string;
4026
- };
4027
- category: {
4028
- default: string;
4029
- type: string;
4030
- };
4031
- key: {
4032
- default: string;
4033
- type: string;
4034
- };
4035
- secret: {
4036
- default: string;
4037
- type: string;
4038
- };
4039
- logo: {
4040
- default: string;
4041
- type: string;
4042
- };
4043
- clientEmail: {
4044
- default: string;
4045
- type: string;
4046
- };
4047
- customerId: {
4048
- default: string;
4049
- type: string;
4050
- };
4051
- channelId: {
4052
- default: string;
4053
- type: string;
4054
- };
4055
- active: {
4056
- default: boolean;
4057
- type: string;
4058
- };
4059
- importBridge: {
4060
- default: boolean;
4061
- type: string;
4062
- };
4063
- exportBridge: {
4064
- default: boolean;
4065
- type: string;
4066
- };
4067
- dynamicBridge: {
4068
- default: boolean;
4069
- type: string;
4070
- };
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;
4071
3420
  };
4072
3421
  operations: {
4073
- label: {
4074
- default: string;
4075
- type: string;
4076
- };
4077
- description: {
4078
- default: string;
4079
- type: string;
4080
- };
4081
- star: {
4082
- default: boolean;
4083
- type: string;
4084
- };
3422
+ label: string;
3423
+ description: string;
3424
+ star: string;
4085
3425
  };
4086
3426
  prompts: {
4087
- label: {
4088
- default: string;
4089
- type: string;
4090
- };
4091
- description: {
4092
- default: string;
4093
- type: string;
4094
- };
4095
- active: {
4096
- default: boolean;
4097
- type: string;
4098
- };
3427
+ label: string;
3428
+ description: string;
3429
+ active: string;
4099
3430
  };
4100
3431
  };
4101
3432
 
4102
- 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, defaults, defaultsWithTypes, 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 };
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 };