@verma-consulting/common-library 0.1.10 → 0.1.12

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
@@ -926,6 +926,7 @@ interface AnalyticsQueryInterface {
926
926
  label?: string;
927
927
  modelName?: string;
928
928
  fieldName?: string;
929
+ fieldType?: string;
929
930
  operationType?: string | null;
930
931
  calculation?: string | null;
931
932
  calculationValue?: string;
@@ -2397,6 +2398,7 @@ declare const defaults: {
2397
2398
  frequencyField: string;
2398
2399
  modelName: string;
2399
2400
  fieldName: string;
2401
+ fieldType: string;
2400
2402
  operationType: string;
2401
2403
  calculation: string;
2402
2404
  calculationValue: string;
@@ -2407,6 +2409,7 @@ declare const defaults: {
2407
2409
  dynamic: boolean;
2408
2410
  modelName: string;
2409
2411
  fieldName: string;
2412
+ fieldType: string;
2410
2413
  calculation: string;
2411
2414
  calculationValue: string;
2412
2415
  };
@@ -2415,6 +2418,7 @@ declare const defaults: {
2415
2418
  star: boolean;
2416
2419
  modelName: string;
2417
2420
  fieldName: string;
2421
+ fieldType: string;
2418
2422
  operationType: string;
2419
2423
  calculation: string;
2420
2424
  calculationValue: string;
@@ -2483,4 +2487,1377 @@ declare const defaults: {
2483
2487
  };
2484
2488
  };
2485
2489
 
2486
- 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, camelCaseToWords, capitalizeSentence, captureMethod, chatType, clientType, collectionMethod, commentRole, constants, currency, customerType, defaults, formatPhoneNumber, getRandomArbitrary, grabAge, integrationType, isNumber, largeNumberLabel, missingPaymentMethod, normalizeKey, openInNewTab, operationType, organizationFilterType, paymentCancellationReason, paymentStatus, prettifyString, productType, snakeToPretty, status, stripHtmlTags, subscriptionCancellationReason, taxExempt, toCurrencyValue, userRole, userSource, userStatus, validEmail };
2490
+ declare const defaultsWithTypes: {
2491
+ users: {
2492
+ firstName: {
2493
+ default: string;
2494
+ type: string;
2495
+ };
2496
+ lastName: {
2497
+ default: string;
2498
+ type: string;
2499
+ };
2500
+ email: {
2501
+ default: string;
2502
+ type: string;
2503
+ };
2504
+ role: {
2505
+ default: string;
2506
+ type: string;
2507
+ };
2508
+ status: {
2509
+ default: string;
2510
+ type: string;
2511
+ };
2512
+ userName: {
2513
+ default: string;
2514
+ type: string;
2515
+ };
2516
+ jobTitle: {
2517
+ default: string;
2518
+ type: string;
2519
+ };
2520
+ password: {
2521
+ default: string;
2522
+ type: string;
2523
+ };
2524
+ dateOfBirth: {
2525
+ default: null;
2526
+ type: string;
2527
+ };
2528
+ phoneNumber: {
2529
+ default: string;
2530
+ type: string;
2531
+ };
2532
+ permissions: {
2533
+ default: never[];
2534
+ type: string;
2535
+ };
2536
+ avatar: {
2537
+ default: null;
2538
+ type: string;
2539
+ };
2540
+ notificationSettings: {
2541
+ dailyReports: {
2542
+ default: boolean;
2543
+ type: string;
2544
+ };
2545
+ dealsClosing: {
2546
+ default: boolean;
2547
+ type: string;
2548
+ };
2549
+ deletionAlerts: {
2550
+ default: boolean;
2551
+ type: string;
2552
+ };
2553
+ device: {
2554
+ default: string;
2555
+ type: string;
2556
+ };
2557
+ };
2558
+ platformSettings: {
2559
+ mode: {
2560
+ default: string;
2561
+ type: string;
2562
+ };
2563
+ language: {
2564
+ default: string;
2565
+ type: string;
2566
+ };
2567
+ currency: {
2568
+ default: string;
2569
+ type: string;
2570
+ };
2571
+ };
2572
+ };
2573
+ clients: {
2574
+ name: {
2575
+ default: string;
2576
+ type: string;
2577
+ };
2578
+ description: {
2579
+ default: string;
2580
+ type: string;
2581
+ };
2582
+ status: {
2583
+ default: string;
2584
+ type: string;
2585
+ };
2586
+ email: {
2587
+ default: string;
2588
+ type: string;
2589
+ };
2590
+ contactName: {
2591
+ default: string;
2592
+ type: string;
2593
+ };
2594
+ phone: {
2595
+ default: string;
2596
+ type: string;
2597
+ };
2598
+ accountNumber: {
2599
+ default: string;
2600
+ type: string;
2601
+ };
2602
+ invoicePrefix: {
2603
+ default: string;
2604
+ type: string;
2605
+ };
2606
+ sicCode: {
2607
+ default: string;
2608
+ type: string;
2609
+ };
2610
+ clientType: {
2611
+ default: string;
2612
+ type: string;
2613
+ };
2614
+ currency: {
2615
+ default: string;
2616
+ type: string;
2617
+ };
2618
+ customerType: {
2619
+ default: string;
2620
+ type: string;
2621
+ };
2622
+ industry: {
2623
+ default: string;
2624
+ type: string;
2625
+ };
2626
+ annualRevenue: {
2627
+ default: number;
2628
+ type: string;
2629
+ };
2630
+ balance: {
2631
+ default: number;
2632
+ type: string;
2633
+ };
2634
+ nextInvoiceSequence: {
2635
+ default: number;
2636
+ type: string;
2637
+ };
2638
+ taxExempt: {
2639
+ default: string;
2640
+ type: string;
2641
+ };
2642
+ website: {
2643
+ default: string;
2644
+ type: string;
2645
+ };
2646
+ source: {
2647
+ default: string;
2648
+ type: string;
2649
+ };
2650
+ logoUrl: {
2651
+ default: string;
2652
+ type: string;
2653
+ };
2654
+ linkedinUrl: {
2655
+ default: string;
2656
+ type: string;
2657
+ };
2658
+ facebookUrl: {
2659
+ default: string;
2660
+ type: string;
2661
+ };
2662
+ twitterUrl: {
2663
+ default: string;
2664
+ type: string;
2665
+ };
2666
+ angelUrl: {
2667
+ default: string;
2668
+ type: string;
2669
+ };
2670
+ crunchbaseUrl: {
2671
+ default: string;
2672
+ type: string;
2673
+ };
2674
+ accountOwner: {
2675
+ default: string;
2676
+ type: string;
2677
+ };
2678
+ contacts: {
2679
+ default: string;
2680
+ type: string;
2681
+ };
2682
+ deals: {
2683
+ default: string;
2684
+ type: string;
2685
+ };
2686
+ invoices: {
2687
+ default: string;
2688
+ type: string;
2689
+ };
2690
+ engagements: {
2691
+ default: string;
2692
+ type: string;
2693
+ };
2694
+ tasks: {
2695
+ default: string;
2696
+ type: string;
2697
+ };
2698
+ };
2699
+ contacts: {
2700
+ name: {
2701
+ default: string;
2702
+ type: string;
2703
+ };
2704
+ description: {
2705
+ default: string;
2706
+ type: string;
2707
+ };
2708
+ status: {
2709
+ default: string;
2710
+ type: string;
2711
+ };
2712
+ email: {
2713
+ default: string;
2714
+ type: string;
2715
+ };
2716
+ phoneNumber: {
2717
+ default: string;
2718
+ type: string;
2719
+ };
2720
+ role: {
2721
+ default: string;
2722
+ type: string;
2723
+ };
2724
+ linkedinUrl: {
2725
+ default: string;
2726
+ type: string;
2727
+ };
2728
+ twitterUrl: {
2729
+ default: string;
2730
+ type: string;
2731
+ };
2732
+ client: {
2733
+ default: string;
2734
+ type: string;
2735
+ };
2736
+ engagements: {
2737
+ default: string;
2738
+ type: string;
2739
+ };
2740
+ };
2741
+ inventories: {
2742
+ name: {
2743
+ default: string;
2744
+ type: string;
2745
+ };
2746
+ description: {
2747
+ default: string;
2748
+ type: string;
2749
+ };
2750
+ status: {
2751
+ default: string;
2752
+ type: string;
2753
+ };
2754
+ amount: {
2755
+ default: number;
2756
+ type: string;
2757
+ };
2758
+ quantity: {
2759
+ default: number;
2760
+ type: string;
2761
+ };
2762
+ };
2763
+ organizations: {
2764
+ name: {
2765
+ default: string;
2766
+ type: string;
2767
+ };
2768
+ website: {
2769
+ default: string;
2770
+ type: string;
2771
+ };
2772
+ industry: {
2773
+ default: string;
2774
+ type: string;
2775
+ };
2776
+ currency: {
2777
+ default: string;
2778
+ type: string;
2779
+ };
2780
+ linkedinUrl: {
2781
+ default: string;
2782
+ type: string;
2783
+ };
2784
+ facebookUrl: {
2785
+ default: string;
2786
+ type: string;
2787
+ };
2788
+ twitterUrl: {
2789
+ default: string;
2790
+ type: string;
2791
+ };
2792
+ angelUrl: {
2793
+ default: string;
2794
+ type: string;
2795
+ };
2796
+ crunchbaseUrl: {
2797
+ default: string;
2798
+ type: string;
2799
+ };
2800
+ };
2801
+ activities: {
2802
+ label: {
2803
+ default: string;
2804
+ type: string;
2805
+ };
2806
+ value: {
2807
+ default: string;
2808
+ type: string;
2809
+ };
2810
+ modelName: {
2811
+ default: string;
2812
+ type: string;
2813
+ };
2814
+ path: {
2815
+ default: string;
2816
+ type: string;
2817
+ };
2818
+ };
2819
+ leads: {
2820
+ name: {
2821
+ default: string;
2822
+ type: string;
2823
+ };
2824
+ description: {
2825
+ default: string;
2826
+ type: string;
2827
+ };
2828
+ status: {
2829
+ default: string;
2830
+ type: string;
2831
+ };
2832
+ leadType: {
2833
+ default: string;
2834
+ type: string;
2835
+ };
2836
+ source: {
2837
+ default: string;
2838
+ type: string;
2839
+ };
2840
+ amount: {
2841
+ default: number;
2842
+ type: string;
2843
+ };
2844
+ projectedClosingDate: {
2845
+ default: null;
2846
+ type: string;
2847
+ };
2848
+ expectedRevenue: {
2849
+ default: number;
2850
+ type: string;
2851
+ };
2852
+ probability: {
2853
+ default: number;
2854
+ type: string;
2855
+ };
2856
+ nextStep: {
2857
+ default: string;
2858
+ type: string;
2859
+ };
2860
+ accountOwner: {
2861
+ default: string;
2862
+ type: string;
2863
+ };
2864
+ client: {
2865
+ default: string;
2866
+ type: string;
2867
+ };
2868
+ campaign: {
2869
+ default: string;
2870
+ type: string;
2871
+ };
2872
+ };
2873
+ deals: {
2874
+ name: {
2875
+ default: string;
2876
+ type: string;
2877
+ };
2878
+ description: {
2879
+ default: string;
2880
+ type: string;
2881
+ };
2882
+ status: {
2883
+ default: string;
2884
+ type: string;
2885
+ };
2886
+ dealType: {
2887
+ default: string;
2888
+ type: string;
2889
+ };
2890
+ source: {
2891
+ default: string;
2892
+ type: string;
2893
+ };
2894
+ amount: {
2895
+ default: number;
2896
+ type: string;
2897
+ };
2898
+ closingDate: {
2899
+ default: null;
2900
+ type: string;
2901
+ };
2902
+ expectedRevenue: {
2903
+ default: number;
2904
+ type: string;
2905
+ };
2906
+ probability: {
2907
+ default: number;
2908
+ type: string;
2909
+ };
2910
+ nextStep: {
2911
+ default: string;
2912
+ type: string;
2913
+ };
2914
+ accountOwner: {
2915
+ default: string;
2916
+ type: string;
2917
+ };
2918
+ client: {
2919
+ default: string;
2920
+ type: string;
2921
+ };
2922
+ campaign: {
2923
+ default: string;
2924
+ type: string;
2925
+ };
2926
+ };
2927
+ campaigns: {
2928
+ name: {
2929
+ default: string;
2930
+ type: string;
2931
+ };
2932
+ description: {
2933
+ default: string;
2934
+ type: string;
2935
+ };
2936
+ status: {
2937
+ default: string;
2938
+ type: string;
2939
+ };
2940
+ priority: {
2941
+ default: string;
2942
+ type: string;
2943
+ };
2944
+ startDate: {
2945
+ default: null;
2946
+ type: string;
2947
+ };
2948
+ endDate: {
2949
+ default: null;
2950
+ type: string;
2951
+ };
2952
+ campaignType: {
2953
+ default: string;
2954
+ type: string;
2955
+ };
2956
+ budgetedCost: {
2957
+ default: number;
2958
+ type: string;
2959
+ };
2960
+ expectedRevenue: {
2961
+ default: number;
2962
+ type: string;
2963
+ };
2964
+ actualCost: {
2965
+ default: number;
2966
+ type: string;
2967
+ };
2968
+ numbersSent: {
2969
+ default: number;
2970
+ type: string;
2971
+ };
2972
+ expectedResponse: {
2973
+ default: string;
2974
+ type: string;
2975
+ };
2976
+ accountOwner: {
2977
+ default: string;
2978
+ type: string;
2979
+ };
2980
+ leads: {
2981
+ default: string;
2982
+ type: string;
2983
+ };
2984
+ deals: {
2985
+ default: string;
2986
+ type: string;
2987
+ };
2988
+ };
2989
+ invoices: {
2990
+ name: {
2991
+ default: string;
2992
+ type: string;
2993
+ };
2994
+ description: {
2995
+ default: string;
2996
+ type: string;
2997
+ };
2998
+ footer: {
2999
+ default: string;
3000
+ type: string;
3001
+ };
3002
+ status: {
3003
+ default: string;
3004
+ type: string;
3005
+ };
3006
+ currency: {
3007
+ default: string;
3008
+ type: string;
3009
+ };
3010
+ accountCountry: {
3011
+ default: string;
3012
+ type: string;
3013
+ };
3014
+ statementDescriptor: {
3015
+ default: string;
3016
+ type: string;
3017
+ };
3018
+ dueDate: {
3019
+ default: null;
3020
+ type: string;
3021
+ };
3022
+ nextPaymentAttempt: {
3023
+ default: null;
3024
+ type: string;
3025
+ };
3026
+ effectiveAt: {
3027
+ default: null;
3028
+ type: string;
3029
+ };
3030
+ amountDue: {
3031
+ default: number;
3032
+ type: string;
3033
+ };
3034
+ amountPaid: {
3035
+ default: number;
3036
+ type: string;
3037
+ };
3038
+ amountRemaining: {
3039
+ default: number;
3040
+ type: string;
3041
+ };
3042
+ amountShipping: {
3043
+ default: number;
3044
+ type: string;
3045
+ };
3046
+ attemptCount: {
3047
+ default: number;
3048
+ type: string;
3049
+ };
3050
+ startingBalance: {
3051
+ default: number;
3052
+ type: string;
3053
+ };
3054
+ endingBalance: {
3055
+ default: number;
3056
+ type: string;
3057
+ };
3058
+ subtotal: {
3059
+ default: number;
3060
+ type: string;
3061
+ };
3062
+ subtotalExcludingTax: {
3063
+ default: number;
3064
+ type: string;
3065
+ };
3066
+ totalExcludingTax: {
3067
+ default: number;
3068
+ type: string;
3069
+ };
3070
+ tax: {
3071
+ default: number;
3072
+ type: string;
3073
+ };
3074
+ postPaymentCreditNotesAmount: {
3075
+ default: number;
3076
+ type: string;
3077
+ };
3078
+ prePaymentCreditNotesAmount: {
3079
+ default: number;
3080
+ type: string;
3081
+ };
3082
+ daysUntilDue: {
3083
+ default: number;
3084
+ type: string;
3085
+ };
3086
+ attempted: {
3087
+ default: boolean;
3088
+ type: string;
3089
+ };
3090
+ autoAdvance: {
3091
+ default: boolean;
3092
+ type: string;
3093
+ };
3094
+ billingReason: {
3095
+ default: string;
3096
+ type: string;
3097
+ };
3098
+ collectionMethod: {
3099
+ default: string;
3100
+ type: string;
3101
+ };
3102
+ customerEmail: {
3103
+ default: string;
3104
+ type: string;
3105
+ };
3106
+ customerPhone: {
3107
+ default: string;
3108
+ type: string;
3109
+ };
3110
+ customerTaxExempt: {
3111
+ default: string;
3112
+ type: string;
3113
+ };
3114
+ invoicePdf: {
3115
+ default: string;
3116
+ type: string;
3117
+ };
3118
+ lastFinalizationError: {
3119
+ default: string;
3120
+ type: string;
3121
+ };
3122
+ number: {
3123
+ default: null;
3124
+ type: string;
3125
+ };
3126
+ receiptNumber: {
3127
+ default: string;
3128
+ type: string;
3129
+ };
3130
+ livemode: {
3131
+ default: boolean;
3132
+ type: string;
3133
+ };
3134
+ paid: {
3135
+ default: boolean;
3136
+ type: string;
3137
+ };
3138
+ paidOutOfBand: {
3139
+ default: boolean;
3140
+ type: string;
3141
+ };
3142
+ client: {
3143
+ default: string;
3144
+ type: string;
3145
+ };
3146
+ accountOwner: {
3147
+ default: string;
3148
+ type: string;
3149
+ };
3150
+ deal: {
3151
+ default: string;
3152
+ type: string;
3153
+ };
3154
+ };
3155
+ issuer: {
3156
+ account: {
3157
+ default: string;
3158
+ type: string;
3159
+ };
3160
+ type: {
3161
+ default: string;
3162
+ type: string;
3163
+ };
3164
+ };
3165
+ engagements: {
3166
+ name: {
3167
+ default: string;
3168
+ type: string;
3169
+ };
3170
+ description: {
3171
+ default: string;
3172
+ type: string;
3173
+ };
3174
+ status: {
3175
+ default: string;
3176
+ type: string;
3177
+ };
3178
+ engagementDate: {
3179
+ default: null;
3180
+ type: string;
3181
+ };
3182
+ client: {
3183
+ default: string;
3184
+ type: string;
3185
+ };
3186
+ contact: {
3187
+ default: string;
3188
+ type: string;
3189
+ };
3190
+ };
3191
+ pools: {
3192
+ name: {
3193
+ default: string;
3194
+ type: string;
3195
+ };
3196
+ description: {
3197
+ default: string;
3198
+ type: string;
3199
+ };
3200
+ status: {
3201
+ default: string;
3202
+ type: string;
3203
+ };
3204
+ };
3205
+ products: {
3206
+ name: {
3207
+ default: string;
3208
+ type: string;
3209
+ };
3210
+ description: {
3211
+ default: null;
3212
+ type: string;
3213
+ };
3214
+ status: {
3215
+ default: string;
3216
+ type: string;
3217
+ };
3218
+ productType: {
3219
+ default: string;
3220
+ type: string;
3221
+ };
3222
+ client: {
3223
+ default: string;
3224
+ type: string;
3225
+ };
3226
+ inventory: {
3227
+ default: string;
3228
+ type: string;
3229
+ };
3230
+ accountOwner: {
3231
+ default: string;
3232
+ type: string;
3233
+ };
3234
+ active: {
3235
+ default: boolean;
3236
+ type: string;
3237
+ };
3238
+ shippable: {
3239
+ default: boolean;
3240
+ type: string;
3241
+ };
3242
+ statementDescriptor: {
3243
+ default: string;
3244
+ type: string;
3245
+ };
3246
+ taxCode: {
3247
+ default: null;
3248
+ type: string;
3249
+ };
3250
+ unitLabel: {
3251
+ default: null;
3252
+ type: string;
3253
+ };
3254
+ url: {
3255
+ default: string;
3256
+ type: string;
3257
+ };
3258
+ };
3259
+ prices: {
3260
+ active: {
3261
+ default: boolean;
3262
+ type: string;
3263
+ };
3264
+ unitAmount: {
3265
+ default: number;
3266
+ type: string;
3267
+ };
3268
+ unitAmountDecimal: {
3269
+ default: null;
3270
+ type: string;
3271
+ };
3272
+ lookupKey: {
3273
+ default: string;
3274
+ type: string;
3275
+ };
3276
+ type: {
3277
+ default: string;
3278
+ type: string;
3279
+ };
3280
+ taxBehavior: {
3281
+ default: string;
3282
+ type: string;
3283
+ };
3284
+ currency: {
3285
+ default: string;
3286
+ type: string;
3287
+ };
3288
+ billingScheme: {
3289
+ default: string;
3290
+ type: string;
3291
+ };
3292
+ recurring: {
3293
+ intervalCount: {
3294
+ default: number;
3295
+ type: string;
3296
+ };
3297
+ interval: {
3298
+ default: string;
3299
+ type: string;
3300
+ };
3301
+ aggregateUsage: {
3302
+ default: string;
3303
+ type: string;
3304
+ };
3305
+ usageType: {
3306
+ default: string;
3307
+ type: string;
3308
+ };
3309
+ trialPeriodDays: {
3310
+ default: number;
3311
+ type: string;
3312
+ };
3313
+ };
3314
+ };
3315
+ packageDimensions: {
3316
+ height: {
3317
+ default: number;
3318
+ type: string;
3319
+ };
3320
+ length: {
3321
+ default: number;
3322
+ type: string;
3323
+ };
3324
+ weight: {
3325
+ default: number;
3326
+ type: string;
3327
+ };
3328
+ width: {
3329
+ default: number;
3330
+ type: string;
3331
+ };
3332
+ };
3333
+ subscriptions: {
3334
+ name: {
3335
+ default: string;
3336
+ type: string;
3337
+ };
3338
+ description: {
3339
+ default: null;
3340
+ type: string;
3341
+ };
3342
+ status: {
3343
+ default: string;
3344
+ type: string;
3345
+ };
3346
+ trialStart: {
3347
+ default: null;
3348
+ type: string;
3349
+ };
3350
+ trialEnd: {
3351
+ default: null;
3352
+ type: string;
3353
+ };
3354
+ startDate: {
3355
+ default: null;
3356
+ type: string;
3357
+ };
3358
+ endedAt: {
3359
+ default: null;
3360
+ type: string;
3361
+ };
3362
+ currentPeriodStart: {
3363
+ default: null;
3364
+ type: string;
3365
+ };
3366
+ currentPeriodEnd: {
3367
+ default: null;
3368
+ type: string;
3369
+ };
3370
+ backdateStartDate: {
3371
+ default: null;
3372
+ type: string;
3373
+ };
3374
+ billingCycleAnchor: {
3375
+ default: null;
3376
+ type: string;
3377
+ };
3378
+ cancelAt: {
3379
+ default: null;
3380
+ type: string;
3381
+ };
3382
+ canceledAt: {
3383
+ default: null;
3384
+ type: string;
3385
+ };
3386
+ daysUntilDue: {
3387
+ default: number;
3388
+ type: string;
3389
+ };
3390
+ trialPeriodDays: {
3391
+ default: number;
3392
+ type: string;
3393
+ };
3394
+ applicationFeePercent: {
3395
+ default: number;
3396
+ type: string;
3397
+ };
3398
+ cancelAtPeriodEnd: {
3399
+ default: boolean;
3400
+ type: string;
3401
+ };
3402
+ trialFromPlan: {
3403
+ default: boolean;
3404
+ type: string;
3405
+ };
3406
+ offSession: {
3407
+ default: boolean;
3408
+ type: string;
3409
+ };
3410
+ nextPendingInvoiceItemInvoice: {
3411
+ default: null;
3412
+ type: string;
3413
+ };
3414
+ collectionMethod: {
3415
+ default: string;
3416
+ type: string;
3417
+ };
3418
+ missingPaymentMethod: {
3419
+ default: string;
3420
+ type: string;
3421
+ };
3422
+ client: {
3423
+ default: string;
3424
+ type: string;
3425
+ };
3426
+ deal: {
3427
+ default: string;
3428
+ type: string;
3429
+ };
3430
+ accountOwner: {
3431
+ default: string;
3432
+ type: string;
3433
+ };
3434
+ };
3435
+ automaticTax: {
3436
+ enabled: {
3437
+ default: boolean;
3438
+ type: string;
3439
+ };
3440
+ liability: {
3441
+ account: {
3442
+ default: string;
3443
+ type: string;
3444
+ };
3445
+ type: {
3446
+ default: string;
3447
+ type: string;
3448
+ };
3449
+ };
3450
+ status: {
3451
+ default: string;
3452
+ type: string;
3453
+ };
3454
+ };
3455
+ pauseCollection: {
3456
+ behavior: {
3457
+ default: string;
3458
+ type: string;
3459
+ };
3460
+ resumesAt: {
3461
+ default: null;
3462
+ type: string;
3463
+ };
3464
+ };
3465
+ cancellationDetails: {
3466
+ comment: {
3467
+ default: string;
3468
+ type: string;
3469
+ };
3470
+ feedback: {
3471
+ default: string;
3472
+ type: string;
3473
+ };
3474
+ reason: {
3475
+ default: string;
3476
+ type: string;
3477
+ };
3478
+ };
3479
+ trialSettings: {
3480
+ endBehavior: {
3481
+ missingPaymentMethod: {
3482
+ default: string;
3483
+ type: string;
3484
+ };
3485
+ };
3486
+ };
3487
+ payments: {
3488
+ name: {
3489
+ default: string;
3490
+ type: string;
3491
+ };
3492
+ description: {
3493
+ default: string;
3494
+ type: string;
3495
+ };
3496
+ status: {
3497
+ default: string;
3498
+ type: string;
3499
+ };
3500
+ paymentStatus: {
3501
+ default: string;
3502
+ type: string;
3503
+ };
3504
+ currency: {
3505
+ default: string;
3506
+ type: string;
3507
+ };
3508
+ amount: {
3509
+ default: number;
3510
+ type: string;
3511
+ };
3512
+ amountCapturable: {
3513
+ default: number;
3514
+ type: string;
3515
+ };
3516
+ amountReceived: {
3517
+ default: number;
3518
+ type: string;
3519
+ };
3520
+ applicationFeeAmount: {
3521
+ default: number;
3522
+ type: string;
3523
+ };
3524
+ statementDescriptor: {
3525
+ default: string;
3526
+ type: string;
3527
+ };
3528
+ statementDescriptorSuffix: {
3529
+ default: string;
3530
+ type: string;
3531
+ };
3532
+ livemode: {
3533
+ default: boolean;
3534
+ type: string;
3535
+ };
3536
+ receiptEmail: {
3537
+ default: string;
3538
+ type: string;
3539
+ };
3540
+ client: {
3541
+ default: string;
3542
+ type: string;
3543
+ };
3544
+ subscription: {
3545
+ default: string;
3546
+ type: string;
3547
+ };
3548
+ invoice: {
3549
+ default: string;
3550
+ type: string;
3551
+ };
3552
+ };
3553
+ reports: {
3554
+ label: {
3555
+ default: string;
3556
+ type: string;
3557
+ };
3558
+ star: {
3559
+ default: boolean;
3560
+ type: string;
3561
+ };
3562
+ chartType: {
3563
+ default: string;
3564
+ type: string;
3565
+ };
3566
+ frequency: {
3567
+ default: string;
3568
+ type: string;
3569
+ };
3570
+ frequencyField: {
3571
+ default: string;
3572
+ type: string;
3573
+ };
3574
+ modelName: {
3575
+ default: string;
3576
+ type: string;
3577
+ };
3578
+ fieldName: {
3579
+ default: string;
3580
+ type: string;
3581
+ };
3582
+ operationType: {
3583
+ default: string;
3584
+ type: string;
3585
+ };
3586
+ calculation: {
3587
+ default: string;
3588
+ type: string;
3589
+ };
3590
+ calculationValue: {
3591
+ default: string;
3592
+ type: string;
3593
+ };
3594
+ };
3595
+ lists: {
3596
+ label: {
3597
+ default: string;
3598
+ type: string;
3599
+ };
3600
+ star: {
3601
+ default: boolean;
3602
+ type: string;
3603
+ };
3604
+ dynamic: {
3605
+ default: boolean;
3606
+ type: string;
3607
+ };
3608
+ modelName: {
3609
+ default: string;
3610
+ type: string;
3611
+ };
3612
+ fieldName: {
3613
+ default: string;
3614
+ type: string;
3615
+ };
3616
+ calculation: {
3617
+ default: string;
3618
+ type: string;
3619
+ };
3620
+ calculationValue: {
3621
+ default: string;
3622
+ type: string;
3623
+ };
3624
+ };
3625
+ statistics: {
3626
+ label: {
3627
+ default: string;
3628
+ type: string;
3629
+ };
3630
+ star: {
3631
+ default: boolean;
3632
+ type: string;
3633
+ };
3634
+ modelName: {
3635
+ default: string;
3636
+ type: string;
3637
+ };
3638
+ fieldName: {
3639
+ default: string;
3640
+ type: string;
3641
+ };
3642
+ operationType: {
3643
+ default: string;
3644
+ type: string;
3645
+ };
3646
+ calculation: {
3647
+ default: string;
3648
+ type: string;
3649
+ };
3650
+ calculationValue: {
3651
+ default: string;
3652
+ type: string;
3653
+ };
3654
+ };
3655
+ address: {
3656
+ streetNumber: {
3657
+ default: string;
3658
+ type: string;
3659
+ };
3660
+ streetName: {
3661
+ default: string;
3662
+ type: string;
3663
+ };
3664
+ city: {
3665
+ default: string;
3666
+ type: string;
3667
+ };
3668
+ state: {
3669
+ default: string;
3670
+ type: string;
3671
+ };
3672
+ country: {
3673
+ default: string;
3674
+ type: string;
3675
+ };
3676
+ countryCode: {
3677
+ default: string;
3678
+ type: string;
3679
+ };
3680
+ postalCode: {
3681
+ default: string;
3682
+ type: string;
3683
+ };
3684
+ latitude: {
3685
+ default: number;
3686
+ type: string;
3687
+ };
3688
+ longitude: {
3689
+ default: number;
3690
+ type: string;
3691
+ };
3692
+ };
3693
+ schema: {
3694
+ deleted: {
3695
+ default: boolean;
3696
+ type: string;
3697
+ };
3698
+ selected: {
3699
+ default: boolean;
3700
+ type: string;
3701
+ };
3702
+ key: {
3703
+ default: string;
3704
+ type: string;
3705
+ };
3706
+ type: {
3707
+ default: string;
3708
+ type: string;
3709
+ };
3710
+ options: {
3711
+ default: never[];
3712
+ type: string;
3713
+ };
3714
+ };
3715
+ comments: {
3716
+ label: {
3717
+ default: string;
3718
+ type: string;
3719
+ };
3720
+ };
3721
+ tasks: {
3722
+ name: {
3723
+ default: string;
3724
+ type: string;
3725
+ };
3726
+ description: {
3727
+ default: string;
3728
+ type: string;
3729
+ };
3730
+ status: {
3731
+ default: string;
3732
+ type: string;
3733
+ };
3734
+ priority: {
3735
+ default: string;
3736
+ type: string;
3737
+ };
3738
+ dueDate: {
3739
+ default: null;
3740
+ type: string;
3741
+ };
3742
+ reminder: {
3743
+ default: boolean;
3744
+ type: string;
3745
+ };
3746
+ reminderDate: {
3747
+ default: null;
3748
+ type: string;
3749
+ };
3750
+ reminderTime: {
3751
+ default: string;
3752
+ type: string;
3753
+ };
3754
+ repeat: {
3755
+ default: boolean;
3756
+ type: string;
3757
+ };
3758
+ repeatDate: {
3759
+ default: null;
3760
+ type: string;
3761
+ };
3762
+ repeatTime: {
3763
+ default: string;
3764
+ type: string;
3765
+ };
3766
+ client: {
3767
+ default: string;
3768
+ type: string;
3769
+ };
3770
+ assignee: {
3771
+ default: string;
3772
+ type: string;
3773
+ };
3774
+ };
3775
+ integrations: {
3776
+ name: {
3777
+ default: string;
3778
+ type: string;
3779
+ };
3780
+ title: {
3781
+ default: string;
3782
+ type: string;
3783
+ };
3784
+ description: {
3785
+ default: string;
3786
+ type: string;
3787
+ };
3788
+ category: {
3789
+ default: string;
3790
+ type: string;
3791
+ };
3792
+ key: {
3793
+ default: string;
3794
+ type: string;
3795
+ };
3796
+ secret: {
3797
+ default: string;
3798
+ type: string;
3799
+ };
3800
+ logo: {
3801
+ default: string;
3802
+ type: string;
3803
+ };
3804
+ clientEmail: {
3805
+ default: string;
3806
+ type: string;
3807
+ };
3808
+ customerId: {
3809
+ default: string;
3810
+ type: string;
3811
+ };
3812
+ channelId: {
3813
+ default: string;
3814
+ type: string;
3815
+ };
3816
+ active: {
3817
+ default: boolean;
3818
+ type: string;
3819
+ };
3820
+ importBridge: {
3821
+ default: boolean;
3822
+ type: string;
3823
+ };
3824
+ exportBridge: {
3825
+ default: boolean;
3826
+ type: string;
3827
+ };
3828
+ dynamicBridge: {
3829
+ default: boolean;
3830
+ type: string;
3831
+ };
3832
+ };
3833
+ operations: {
3834
+ label: {
3835
+ default: string;
3836
+ type: string;
3837
+ };
3838
+ description: {
3839
+ default: string;
3840
+ type: string;
3841
+ };
3842
+ star: {
3843
+ default: boolean;
3844
+ type: string;
3845
+ };
3846
+ };
3847
+ prompts: {
3848
+ label: {
3849
+ default: string;
3850
+ type: string;
3851
+ };
3852
+ description: {
3853
+ default: string;
3854
+ type: string;
3855
+ };
3856
+ active: {
3857
+ default: boolean;
3858
+ type: string;
3859
+ };
3860
+ };
3861
+ };
3862
+
3863
+ 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, camelCaseToWords, capitalizeSentence, captureMethod, chatType, clientType, collectionMethod, commentRole, constants, currency, customerType, defaults, defaultsWithTypes, formatPhoneNumber, getRandomArbitrary, grabAge, integrationType, isNumber, largeNumberLabel, missingPaymentMethod, normalizeKey, openInNewTab, operationType, organizationFilterType, paymentCancellationReason, paymentStatus, prettifyString, productType, snakeToPretty, status, stripHtmlTags, subscriptionCancellationReason, taxExempt, toCurrencyValue, userRole, userSource, userStatus, validEmail };