@@ -7081,12 +7081,6 @@ events related to storage.
7081
7081
7082
7082
### Definition ### {#module-storage-definition}
7083
7083
7084
- [=Local end definition=]
7085
-
7086
- ### Types ### {#module-storage-types}
7087
-
7088
- #### The storage.Cookie Type #### {#type-storage-Cookie}
7089
-
7090
7084
[=Remote end definition=]
7091
7085
7092
7086
<pre class="cddl remote-cddl">
@@ -7106,22 +7100,20 @@ StorageResult = (
7106
7100
)
7107
7101
</pre>
7108
7102
7103
+ ### Types ### {#module-storage-types}
7104
+
7105
+ #### The storage.PartitionKey Type #### {#type-storage-PartitionKey}
7106
+
7109
7107
[=Remote end definition=] and [=Local end definition=]
7110
7108
7111
7109
<pre class="cddl local-cddl remote-cddl">
7112
- storage.Cookie = {
7113
- name: text;
7114
- value: text;
7115
- host: text;
7116
- ? partitionKey: {
7117
- Extensible
7118
- };
7110
+ storage.PartitionKey = {
7111
+ ? container: text,
7112
+ ? sourceOrigin: text,
7119
7113
}
7120
7114
</pre>
7121
7115
7122
- The <code> storage.Cookie</code> type provides details of a given cookie.
7123
-
7124
- Issue: Confirm if <code> cookie</code> type should be consolidated in one place <code> storage.Cookie</code> or <code> Network.Cookie</code> .
7116
+ The <code> storage.PartitionKey</code> type describes a namespace for storing data.
7125
7117
7126
7118
A [=remote end=] has a [=/set=] of <dfn>storage partition keys</dfn> which contains zero or more implementation-defined string values.
7127
7119
@@ -7138,7 +7130,13 @@ The <dfn export for=commands>storage.getCookie</dfn> command specific cookie ch
7138
7130
<dd>
7139
7131
<pre class="cddl remote-cddl">
7140
7132
storage.GetCookie = {
7133
+ method: "storage.getCookie",
7134
+ params: storage.GetCookieParameters
7135
+ }
7141
7136
7137
+ storage.GetCookieParameter = {
7138
+ cookie: { ? ~ network.Cookie },
7139
+ ? partitionKey: storage.PartitionKey,
7142
7140
}
7143
7141
</pre>
7144
7142
</dd>
0 commit comments