@juhuu/sdk-ts 1.2.112 → 1.2.113
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 +1 -2
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -1839,7 +1839,7 @@ declare namespace JUHUU {
|
|
1839
1839
|
export interface RegexLicenseTemplate extends Base {
|
1840
1840
|
type: "regex";
|
1841
1841
|
regex: string;
|
1842
|
-
propertyId: string;
|
1842
|
+
propertyId: string | null;
|
1843
1843
|
}
|
1844
1844
|
export interface AutomaticLicenseTemplate extends Base {
|
1845
1845
|
type: "automatic";
|
@@ -1857,7 +1857,6 @@ declare namespace JUHUU {
|
|
1857
1857
|
export interface StripeIdentityLicenseTemplate extends Base {
|
1858
1858
|
type: "stripeIdentity";
|
1859
1859
|
url: string;
|
1860
|
-
propertyId: string;
|
1861
1860
|
}
|
1862
1861
|
export type Object = AutomaticLicenseTemplate | RegexLicenseTemplate | UrlLicenseTemplate | StripeIdentityLicenseTemplate;
|
1863
1862
|
export namespace Create {
|
package/dist/index.d.ts
CHANGED
@@ -1839,7 +1839,7 @@ declare namespace JUHUU {
|
|
1839
1839
|
export interface RegexLicenseTemplate extends Base {
|
1840
1840
|
type: "regex";
|
1841
1841
|
regex: string;
|
1842
|
-
propertyId: string;
|
1842
|
+
propertyId: string | null;
|
1843
1843
|
}
|
1844
1844
|
export interface AutomaticLicenseTemplate extends Base {
|
1845
1845
|
type: "automatic";
|
@@ -1857,7 +1857,6 @@ declare namespace JUHUU {
|
|
1857
1857
|
export interface StripeIdentityLicenseTemplate extends Base {
|
1858
1858
|
type: "stripeIdentity";
|
1859
1859
|
url: string;
|
1860
|
-
propertyId: string;
|
1861
1860
|
}
|
1862
1861
|
export type Object = AutomaticLicenseTemplate | RegexLicenseTemplate | UrlLicenseTemplate | StripeIdentityLicenseTemplate;
|
1863
1862
|
export namespace Create {
|