@verma-consulting/common-library 0.1.9 → 0.1.11

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