@internetdata/internetdata 1.2.0 → 1.2.1
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.
|
@@ -45,11 +45,11 @@ export type Database = {
|
|
|
45
45
|
/**
|
|
46
46
|
* When a rolling licence next renews. Null when the licence has no defined term, when expires sets a hard stop instead, and when there is no licence.
|
|
47
47
|
*/
|
|
48
|
-
renews_at
|
|
48
|
+
renews_at: string | null;
|
|
49
49
|
/**
|
|
50
50
|
* The last day notice of non-renewal can be given for the term ending at renews_at. Null whenever renews_at is, and when the agreement records no notice period.
|
|
51
51
|
*/
|
|
52
|
-
notice_due_at
|
|
52
|
+
notice_due_at: string | null;
|
|
53
53
|
/**
|
|
54
54
|
* Every published version of this family, oldest first. Old versions
|
|
55
55
|
* are frozen rather than migrated, so both stay downloadable.
|
package/package.json
CHANGED