@verma-consulting/common-library 0.1.18 → 0.1.20

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