@verma-consulting/common-library 0.1.55 → 0.1.57
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 +70 -43
- package/dist/index.d.ts +70 -43
- package/dist/index.js +72 -45
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +72 -45
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2017,7 +2017,8 @@ declare enum status {
|
|
|
2017
2017
|
declare enum ContentType {
|
|
2018
2018
|
Grid = "Grid",
|
|
2019
2019
|
Table = "Table",
|
|
2020
|
-
Kanban = "Kanban"
|
|
2020
|
+
Kanban = "Kanban",
|
|
2021
|
+
Map = "Map"
|
|
2021
2022
|
}
|
|
2022
2023
|
declare enum CalculationType {
|
|
2023
2024
|
EqualsTo = "EqualsTo",
|
|
@@ -3395,13 +3396,19 @@ declare const defaultTypes: {
|
|
|
3395
3396
|
length: string;
|
|
3396
3397
|
weight: string;
|
|
3397
3398
|
width: string;
|
|
3399
|
+
unit: string;
|
|
3400
|
+
weight_unit: string;
|
|
3401
|
+
girth: string;
|
|
3402
|
+
package_type: string;
|
|
3403
|
+
template: string;
|
|
3404
|
+
metadata: string;
|
|
3398
3405
|
};
|
|
3399
3406
|
prices: {
|
|
3400
3407
|
active: string;
|
|
3401
3408
|
unitAmount: string;
|
|
3402
3409
|
unitAmountDecimal: string;
|
|
3403
3410
|
lookupKey: string;
|
|
3404
|
-
|
|
3411
|
+
priceType: string;
|
|
3405
3412
|
taxBehavior: string;
|
|
3406
3413
|
currency: string;
|
|
3407
3414
|
billingScheme: string;
|
|
@@ -3552,7 +3559,6 @@ declare const defaultTypes: {
|
|
|
3552
3559
|
offSession: string;
|
|
3553
3560
|
nextPendingInvoiceItemInvoice: string;
|
|
3554
3561
|
collectionMethod: string;
|
|
3555
|
-
missingPaymentMethod: string;
|
|
3556
3562
|
client: string;
|
|
3557
3563
|
deal: string;
|
|
3558
3564
|
accountOwner: string;
|
|
@@ -3585,30 +3591,43 @@ declare const defaultTypes: {
|
|
|
3585
3591
|
status: string;
|
|
3586
3592
|
paymentStatus: string;
|
|
3587
3593
|
currency: string;
|
|
3594
|
+
receiptEmail: string;
|
|
3595
|
+
receiptNumber: string;
|
|
3596
|
+
receiptUrl: string;
|
|
3597
|
+
setupFutureUsage: string;
|
|
3588
3598
|
amount: string;
|
|
3589
3599
|
amountCapturable: string;
|
|
3590
3600
|
amountReceived: string;
|
|
3591
3601
|
applicationFeeAmount: string;
|
|
3602
|
+
cancellationReason: string;
|
|
3592
3603
|
statementDescriptor: string;
|
|
3593
3604
|
statementDescriptorSuffix: string;
|
|
3605
|
+
calculatedStatementDescriptor: string;
|
|
3606
|
+
confirm: string;
|
|
3607
|
+
paid: string;
|
|
3608
|
+
captured: string;
|
|
3609
|
+
disputed: string;
|
|
3610
|
+
refunded: string;
|
|
3611
|
+
canceledAt: string;
|
|
3612
|
+
captureMethod: string;
|
|
3613
|
+
confirmationMethod: string;
|
|
3594
3614
|
livemode: string;
|
|
3595
|
-
receiptEmail: string;
|
|
3596
3615
|
client: string;
|
|
3597
3616
|
subscription: string;
|
|
3598
3617
|
invoice: string;
|
|
3599
3618
|
automatic_payment_methods: {
|
|
3600
|
-
|
|
3619
|
+
allowRedirects: string;
|
|
3601
3620
|
enabled: string;
|
|
3602
3621
|
};
|
|
3603
3622
|
amount_details: {
|
|
3604
|
-
|
|
3623
|
+
discountAmount: string;
|
|
3605
3624
|
shipping: {
|
|
3606
3625
|
amount: string;
|
|
3607
|
-
|
|
3608
|
-
|
|
3626
|
+
fromPostalCode: string;
|
|
3627
|
+
toPostalCode: string;
|
|
3609
3628
|
};
|
|
3610
3629
|
tax: {
|
|
3611
|
-
|
|
3630
|
+
totalTaxAmount: string;
|
|
3612
3631
|
};
|
|
3613
3632
|
tip: {
|
|
3614
3633
|
amount: string;
|
|
@@ -3629,7 +3648,7 @@ declare const defaultTypes: {
|
|
|
3629
3648
|
country: string;
|
|
3630
3649
|
line1: string;
|
|
3631
3650
|
line2: string;
|
|
3632
|
-
|
|
3651
|
+
postalCode: string;
|
|
3633
3652
|
state: string;
|
|
3634
3653
|
};
|
|
3635
3654
|
email: string;
|
|
@@ -3642,13 +3661,13 @@ declare const defaultTypes: {
|
|
|
3642
3661
|
country: string;
|
|
3643
3662
|
line1: string;
|
|
3644
3663
|
line2: string;
|
|
3645
|
-
|
|
3664
|
+
postalCode: string;
|
|
3646
3665
|
state: string;
|
|
3647
3666
|
};
|
|
3648
3667
|
carrier: string;
|
|
3649
3668
|
name: string;
|
|
3650
3669
|
phone: string;
|
|
3651
|
-
|
|
3670
|
+
trackingNumber: string;
|
|
3652
3671
|
};
|
|
3653
3672
|
refunds: {
|
|
3654
3673
|
name: string;
|
|
@@ -3676,39 +3695,39 @@ declare const defaultTypes: {
|
|
|
3676
3695
|
isChargeRefundable: string;
|
|
3677
3696
|
livemode: string;
|
|
3678
3697
|
evidence: {
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3698
|
+
accessActivityLog: string;
|
|
3699
|
+
billingAddress: string;
|
|
3700
|
+
cancellationPolicy: string;
|
|
3701
|
+
cancellationPolicyDisclosure: string;
|
|
3702
|
+
cancellationRebuttal: string;
|
|
3703
|
+
customerCommunication: string;
|
|
3704
|
+
customerEmailAddress: string;
|
|
3705
|
+
customerName: string;
|
|
3706
|
+
customerPurchaseIp: string;
|
|
3707
|
+
customerSignature: string;
|
|
3708
|
+
duplicateChargeDocumentation: string;
|
|
3709
|
+
duplicateChargeExplanation: string;
|
|
3710
|
+
duplicateChargeId: string;
|
|
3711
|
+
productDescription: string;
|
|
3693
3712
|
receipt: string;
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3713
|
+
refundPolicy: string;
|
|
3714
|
+
refundPolicyDisclosure: string;
|
|
3715
|
+
refundRefusalExplanation: string;
|
|
3716
|
+
serviceDate: string;
|
|
3717
|
+
serviceDocumentation: string;
|
|
3718
|
+
shippingAddress: string;
|
|
3719
|
+
shippingCarrier: string;
|
|
3720
|
+
shippingDate: string;
|
|
3721
|
+
shippingDocumentation: string;
|
|
3722
|
+
shippingTrackingNumber: string;
|
|
3723
|
+
uncategorizedFile: string;
|
|
3724
|
+
uncategorizedText: string;
|
|
3706
3725
|
};
|
|
3707
3726
|
evidenceDetails: {
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3727
|
+
dueBy: string;
|
|
3728
|
+
hasEvidence: string;
|
|
3729
|
+
pastDue: string;
|
|
3730
|
+
submissionCount: string;
|
|
3712
3731
|
};
|
|
3713
3732
|
};
|
|
3714
3733
|
pools: {
|
|
@@ -3720,7 +3739,7 @@ declare const defaultTypes: {
|
|
|
3720
3739
|
account: string;
|
|
3721
3740
|
type: string;
|
|
3722
3741
|
};
|
|
3723
|
-
|
|
3742
|
+
activties: {
|
|
3724
3743
|
label: string;
|
|
3725
3744
|
value: string;
|
|
3726
3745
|
modelName: string;
|
|
@@ -3728,30 +3747,36 @@ declare const defaultTypes: {
|
|
|
3728
3747
|
};
|
|
3729
3748
|
reports: {
|
|
3730
3749
|
label: string;
|
|
3750
|
+
prompt: string;
|
|
3731
3751
|
star: string;
|
|
3732
3752
|
chartType: string;
|
|
3733
3753
|
frequency: string;
|
|
3734
3754
|
frequencyField: string;
|
|
3735
3755
|
modelName: string;
|
|
3736
3756
|
fieldName: string;
|
|
3757
|
+
fieldType: string;
|
|
3737
3758
|
operationType: string;
|
|
3738
3759
|
calculation: string;
|
|
3739
3760
|
calculationValue: string;
|
|
3740
3761
|
};
|
|
3741
3762
|
lists: {
|
|
3742
3763
|
label: string;
|
|
3764
|
+
prompt: string;
|
|
3743
3765
|
star: string;
|
|
3744
3766
|
dynamic: string;
|
|
3745
3767
|
modelName: string;
|
|
3746
3768
|
fieldName: string;
|
|
3769
|
+
fieldType: string;
|
|
3747
3770
|
calculation: string;
|
|
3748
3771
|
calculationValue: string;
|
|
3749
3772
|
};
|
|
3750
3773
|
statistics: {
|
|
3751
3774
|
label: string;
|
|
3775
|
+
prompt: string;
|
|
3752
3776
|
star: string;
|
|
3753
3777
|
modelName: string;
|
|
3754
3778
|
fieldName: string;
|
|
3779
|
+
fieldType: string;
|
|
3755
3780
|
operationType: string;
|
|
3756
3781
|
calculation: string;
|
|
3757
3782
|
calculationValue: string;
|
|
@@ -3764,6 +3789,7 @@ declare const defaultTypes: {
|
|
|
3764
3789
|
country: string;
|
|
3765
3790
|
countryCode: string;
|
|
3766
3791
|
postalCode: string;
|
|
3792
|
+
addressType: string;
|
|
3767
3793
|
latitude: string;
|
|
3768
3794
|
longitude: string;
|
|
3769
3795
|
};
|
|
@@ -3782,6 +3808,7 @@ declare const defaultTypes: {
|
|
|
3782
3808
|
title: string;
|
|
3783
3809
|
description: string;
|
|
3784
3810
|
category: string;
|
|
3811
|
+
type: string;
|
|
3785
3812
|
key: string;
|
|
3786
3813
|
secret: string;
|
|
3787
3814
|
logo: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2017,7 +2017,8 @@ declare enum status {
|
|
|
2017
2017
|
declare enum ContentType {
|
|
2018
2018
|
Grid = "Grid",
|
|
2019
2019
|
Table = "Table",
|
|
2020
|
-
Kanban = "Kanban"
|
|
2020
|
+
Kanban = "Kanban",
|
|
2021
|
+
Map = "Map"
|
|
2021
2022
|
}
|
|
2022
2023
|
declare enum CalculationType {
|
|
2023
2024
|
EqualsTo = "EqualsTo",
|
|
@@ -3395,13 +3396,19 @@ declare const defaultTypes: {
|
|
|
3395
3396
|
length: string;
|
|
3396
3397
|
weight: string;
|
|
3397
3398
|
width: string;
|
|
3399
|
+
unit: string;
|
|
3400
|
+
weight_unit: string;
|
|
3401
|
+
girth: string;
|
|
3402
|
+
package_type: string;
|
|
3403
|
+
template: string;
|
|
3404
|
+
metadata: string;
|
|
3398
3405
|
};
|
|
3399
3406
|
prices: {
|
|
3400
3407
|
active: string;
|
|
3401
3408
|
unitAmount: string;
|
|
3402
3409
|
unitAmountDecimal: string;
|
|
3403
3410
|
lookupKey: string;
|
|
3404
|
-
|
|
3411
|
+
priceType: string;
|
|
3405
3412
|
taxBehavior: string;
|
|
3406
3413
|
currency: string;
|
|
3407
3414
|
billingScheme: string;
|
|
@@ -3552,7 +3559,6 @@ declare const defaultTypes: {
|
|
|
3552
3559
|
offSession: string;
|
|
3553
3560
|
nextPendingInvoiceItemInvoice: string;
|
|
3554
3561
|
collectionMethod: string;
|
|
3555
|
-
missingPaymentMethod: string;
|
|
3556
3562
|
client: string;
|
|
3557
3563
|
deal: string;
|
|
3558
3564
|
accountOwner: string;
|
|
@@ -3585,30 +3591,43 @@ declare const defaultTypes: {
|
|
|
3585
3591
|
status: string;
|
|
3586
3592
|
paymentStatus: string;
|
|
3587
3593
|
currency: string;
|
|
3594
|
+
receiptEmail: string;
|
|
3595
|
+
receiptNumber: string;
|
|
3596
|
+
receiptUrl: string;
|
|
3597
|
+
setupFutureUsage: string;
|
|
3588
3598
|
amount: string;
|
|
3589
3599
|
amountCapturable: string;
|
|
3590
3600
|
amountReceived: string;
|
|
3591
3601
|
applicationFeeAmount: string;
|
|
3602
|
+
cancellationReason: string;
|
|
3592
3603
|
statementDescriptor: string;
|
|
3593
3604
|
statementDescriptorSuffix: string;
|
|
3605
|
+
calculatedStatementDescriptor: string;
|
|
3606
|
+
confirm: string;
|
|
3607
|
+
paid: string;
|
|
3608
|
+
captured: string;
|
|
3609
|
+
disputed: string;
|
|
3610
|
+
refunded: string;
|
|
3611
|
+
canceledAt: string;
|
|
3612
|
+
captureMethod: string;
|
|
3613
|
+
confirmationMethod: string;
|
|
3594
3614
|
livemode: string;
|
|
3595
|
-
receiptEmail: string;
|
|
3596
3615
|
client: string;
|
|
3597
3616
|
subscription: string;
|
|
3598
3617
|
invoice: string;
|
|
3599
3618
|
automatic_payment_methods: {
|
|
3600
|
-
|
|
3619
|
+
allowRedirects: string;
|
|
3601
3620
|
enabled: string;
|
|
3602
3621
|
};
|
|
3603
3622
|
amount_details: {
|
|
3604
|
-
|
|
3623
|
+
discountAmount: string;
|
|
3605
3624
|
shipping: {
|
|
3606
3625
|
amount: string;
|
|
3607
|
-
|
|
3608
|
-
|
|
3626
|
+
fromPostalCode: string;
|
|
3627
|
+
toPostalCode: string;
|
|
3609
3628
|
};
|
|
3610
3629
|
tax: {
|
|
3611
|
-
|
|
3630
|
+
totalTaxAmount: string;
|
|
3612
3631
|
};
|
|
3613
3632
|
tip: {
|
|
3614
3633
|
amount: string;
|
|
@@ -3629,7 +3648,7 @@ declare const defaultTypes: {
|
|
|
3629
3648
|
country: string;
|
|
3630
3649
|
line1: string;
|
|
3631
3650
|
line2: string;
|
|
3632
|
-
|
|
3651
|
+
postalCode: string;
|
|
3633
3652
|
state: string;
|
|
3634
3653
|
};
|
|
3635
3654
|
email: string;
|
|
@@ -3642,13 +3661,13 @@ declare const defaultTypes: {
|
|
|
3642
3661
|
country: string;
|
|
3643
3662
|
line1: string;
|
|
3644
3663
|
line2: string;
|
|
3645
|
-
|
|
3664
|
+
postalCode: string;
|
|
3646
3665
|
state: string;
|
|
3647
3666
|
};
|
|
3648
3667
|
carrier: string;
|
|
3649
3668
|
name: string;
|
|
3650
3669
|
phone: string;
|
|
3651
|
-
|
|
3670
|
+
trackingNumber: string;
|
|
3652
3671
|
};
|
|
3653
3672
|
refunds: {
|
|
3654
3673
|
name: string;
|
|
@@ -3676,39 +3695,39 @@ declare const defaultTypes: {
|
|
|
3676
3695
|
isChargeRefundable: string;
|
|
3677
3696
|
livemode: string;
|
|
3678
3697
|
evidence: {
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3698
|
+
accessActivityLog: string;
|
|
3699
|
+
billingAddress: string;
|
|
3700
|
+
cancellationPolicy: string;
|
|
3701
|
+
cancellationPolicyDisclosure: string;
|
|
3702
|
+
cancellationRebuttal: string;
|
|
3703
|
+
customerCommunication: string;
|
|
3704
|
+
customerEmailAddress: string;
|
|
3705
|
+
customerName: string;
|
|
3706
|
+
customerPurchaseIp: string;
|
|
3707
|
+
customerSignature: string;
|
|
3708
|
+
duplicateChargeDocumentation: string;
|
|
3709
|
+
duplicateChargeExplanation: string;
|
|
3710
|
+
duplicateChargeId: string;
|
|
3711
|
+
productDescription: string;
|
|
3693
3712
|
receipt: string;
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3713
|
+
refundPolicy: string;
|
|
3714
|
+
refundPolicyDisclosure: string;
|
|
3715
|
+
refundRefusalExplanation: string;
|
|
3716
|
+
serviceDate: string;
|
|
3717
|
+
serviceDocumentation: string;
|
|
3718
|
+
shippingAddress: string;
|
|
3719
|
+
shippingCarrier: string;
|
|
3720
|
+
shippingDate: string;
|
|
3721
|
+
shippingDocumentation: string;
|
|
3722
|
+
shippingTrackingNumber: string;
|
|
3723
|
+
uncategorizedFile: string;
|
|
3724
|
+
uncategorizedText: string;
|
|
3706
3725
|
};
|
|
3707
3726
|
evidenceDetails: {
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3727
|
+
dueBy: string;
|
|
3728
|
+
hasEvidence: string;
|
|
3729
|
+
pastDue: string;
|
|
3730
|
+
submissionCount: string;
|
|
3712
3731
|
};
|
|
3713
3732
|
};
|
|
3714
3733
|
pools: {
|
|
@@ -3720,7 +3739,7 @@ declare const defaultTypes: {
|
|
|
3720
3739
|
account: string;
|
|
3721
3740
|
type: string;
|
|
3722
3741
|
};
|
|
3723
|
-
|
|
3742
|
+
activties: {
|
|
3724
3743
|
label: string;
|
|
3725
3744
|
value: string;
|
|
3726
3745
|
modelName: string;
|
|
@@ -3728,30 +3747,36 @@ declare const defaultTypes: {
|
|
|
3728
3747
|
};
|
|
3729
3748
|
reports: {
|
|
3730
3749
|
label: string;
|
|
3750
|
+
prompt: string;
|
|
3731
3751
|
star: string;
|
|
3732
3752
|
chartType: string;
|
|
3733
3753
|
frequency: string;
|
|
3734
3754
|
frequencyField: string;
|
|
3735
3755
|
modelName: string;
|
|
3736
3756
|
fieldName: string;
|
|
3757
|
+
fieldType: string;
|
|
3737
3758
|
operationType: string;
|
|
3738
3759
|
calculation: string;
|
|
3739
3760
|
calculationValue: string;
|
|
3740
3761
|
};
|
|
3741
3762
|
lists: {
|
|
3742
3763
|
label: string;
|
|
3764
|
+
prompt: string;
|
|
3743
3765
|
star: string;
|
|
3744
3766
|
dynamic: string;
|
|
3745
3767
|
modelName: string;
|
|
3746
3768
|
fieldName: string;
|
|
3769
|
+
fieldType: string;
|
|
3747
3770
|
calculation: string;
|
|
3748
3771
|
calculationValue: string;
|
|
3749
3772
|
};
|
|
3750
3773
|
statistics: {
|
|
3751
3774
|
label: string;
|
|
3775
|
+
prompt: string;
|
|
3752
3776
|
star: string;
|
|
3753
3777
|
modelName: string;
|
|
3754
3778
|
fieldName: string;
|
|
3779
|
+
fieldType: string;
|
|
3755
3780
|
operationType: string;
|
|
3756
3781
|
calculation: string;
|
|
3757
3782
|
calculationValue: string;
|
|
@@ -3764,6 +3789,7 @@ declare const defaultTypes: {
|
|
|
3764
3789
|
country: string;
|
|
3765
3790
|
countryCode: string;
|
|
3766
3791
|
postalCode: string;
|
|
3792
|
+
addressType: string;
|
|
3767
3793
|
latitude: string;
|
|
3768
3794
|
longitude: string;
|
|
3769
3795
|
};
|
|
@@ -3782,6 +3808,7 @@ declare const defaultTypes: {
|
|
|
3782
3808
|
title: string;
|
|
3783
3809
|
description: string;
|
|
3784
3810
|
category: string;
|
|
3811
|
+
type: string;
|
|
3785
3812
|
key: string;
|
|
3786
3813
|
secret: string;
|
|
3787
3814
|
logo: string;
|