@juhuu/sdk-ts 1.2.111 → 1.2.112
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 +6 -1
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1854,7 +1854,12 @@ declare namespace JUHUU {
|
|
1854
1854
|
attachPropertyId: boolean;
|
1855
1855
|
linkText: LocaleString;
|
1856
1856
|
}
|
1857
|
-
export
|
1857
|
+
export interface StripeIdentityLicenseTemplate extends Base {
|
1858
|
+
type: "stripeIdentity";
|
1859
|
+
url: string;
|
1860
|
+
propertyId: string;
|
1861
|
+
}
|
1862
|
+
export type Object = AutomaticLicenseTemplate | RegexLicenseTemplate | UrlLicenseTemplate | StripeIdentityLicenseTemplate;
|
1858
1863
|
export namespace Create {
|
1859
1864
|
type Params = {
|
1860
1865
|
propertyId: string;
|
package/dist/index.d.ts
CHANGED
@@ -1854,7 +1854,12 @@ declare namespace JUHUU {
|
|
1854
1854
|
attachPropertyId: boolean;
|
1855
1855
|
linkText: LocaleString;
|
1856
1856
|
}
|
1857
|
-
export
|
1857
|
+
export interface StripeIdentityLicenseTemplate extends Base {
|
1858
|
+
type: "stripeIdentity";
|
1859
|
+
url: string;
|
1860
|
+
propertyId: string;
|
1861
|
+
}
|
1862
|
+
export type Object = AutomaticLicenseTemplate | RegexLicenseTemplate | UrlLicenseTemplate | StripeIdentityLicenseTemplate;
|
1858
1863
|
export namespace Create {
|
1859
1864
|
type Params = {
|
1860
1865
|
propertyId: string;
|