@inklok/api-spec 7.7.1 → 7.7.2
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/openapi.yaml +17 -1
- package/package.json +1 -1
package/openapi.yaml
CHANGED
|
@@ -8,7 +8,7 @@ info:
|
|
|
8
8
|
Authenticate using an API key or bearer token, then use the resources below to manage
|
|
9
9
|
templates, agreements, documents, and signing. For your first integration, start with
|
|
10
10
|
the Quick Start guide.
|
|
11
|
-
version: "7.7.
|
|
11
|
+
version: "7.7.2"
|
|
12
12
|
contact:
|
|
13
13
|
name: Inklok API Support
|
|
14
14
|
email: support@inklok.com
|
|
@@ -3699,6 +3699,7 @@ components:
|
|
|
3699
3699
|
additionalProperties: false
|
|
3700
3700
|
required:
|
|
3701
3701
|
- source
|
|
3702
|
+
- productPlan
|
|
3702
3703
|
- currentPlan
|
|
3703
3704
|
- status
|
|
3704
3705
|
- billingInterval
|
|
@@ -3706,14 +3707,19 @@ components:
|
|
|
3706
3707
|
- currentBillingPeriodEnd
|
|
3707
3708
|
- renewalDate
|
|
3708
3709
|
- cancelAtPeriodEnd
|
|
3710
|
+
- canceledAt
|
|
3709
3711
|
- paddleCustomerId
|
|
3710
3712
|
- paddleSubscriptionId
|
|
3711
3713
|
- nextBilledAt
|
|
3712
3714
|
- nextExpectedBillingTransition
|
|
3715
|
+
- reconciliationRequested
|
|
3713
3716
|
properties:
|
|
3714
3717
|
source:
|
|
3715
3718
|
type: string
|
|
3716
3719
|
enum: [PADDLE, INTERNAL]
|
|
3720
|
+
productPlan:
|
|
3721
|
+
type: string
|
|
3722
|
+
enum: [free, pro, team, enterprise]
|
|
3717
3723
|
currentPlan:
|
|
3718
3724
|
type: string
|
|
3719
3725
|
enum: [free, pro, team, enterprise]
|
|
@@ -3736,6 +3742,10 @@ components:
|
|
|
3736
3742
|
nullable: true
|
|
3737
3743
|
cancelAtPeriodEnd:
|
|
3738
3744
|
type: boolean
|
|
3745
|
+
canceledAt:
|
|
3746
|
+
type: string
|
|
3747
|
+
format: date-time
|
|
3748
|
+
nullable: true
|
|
3739
3749
|
paddleCustomerId:
|
|
3740
3750
|
type: string
|
|
3741
3751
|
nullable: true
|
|
@@ -3750,12 +3760,15 @@ components:
|
|
|
3750
3760
|
type: string
|
|
3751
3761
|
format: date-time
|
|
3752
3762
|
nullable: true
|
|
3763
|
+
reconciliationRequested:
|
|
3764
|
+
type: boolean
|
|
3753
3765
|
|
|
3754
3766
|
MeBillingResponse:
|
|
3755
3767
|
type: object
|
|
3756
3768
|
additionalProperties: false
|
|
3757
3769
|
required:
|
|
3758
3770
|
- accountId
|
|
3771
|
+
- currentPlan
|
|
3759
3772
|
- plan
|
|
3760
3773
|
- subscriptionStatus
|
|
3761
3774
|
- limits
|
|
@@ -3763,6 +3776,9 @@ components:
|
|
|
3763
3776
|
properties:
|
|
3764
3777
|
accountId:
|
|
3765
3778
|
type: string
|
|
3779
|
+
currentPlan:
|
|
3780
|
+
type: string
|
|
3781
|
+
enum: [free, pro, team, enterprise]
|
|
3766
3782
|
plan:
|
|
3767
3783
|
type: string
|
|
3768
3784
|
enum: [free, pro, team, enterprise]
|