@saooti/octopus-sdk 31.0.2 → 31.0.3
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/README.md +4 -1
- package/package.json +1 -1
- package/src/store/paramStore.ts +0 -2
- package/src/store/typeAppStore.ts +0 -4
package/README.md
CHANGED
|
@@ -561,7 +561,10 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
|
|
561
561
|
* 30.0.62 Italian translation
|
|
562
562
|
* 30.0.63 Italian translation
|
|
563
563
|
* 30.0.64 Modif Le soir
|
|
564
|
+
* 30.0.65 OAuthType
|
|
564
565
|
|
|
565
566
|
* 31.0.0 Passage en 31
|
|
566
567
|
* 31.0.1 Ajout pocket casts
|
|
567
|
-
* 31.0.2 Gestion des 403
|
|
568
|
+
* 31.0.2 Gestion des 403
|
|
569
|
+
* 31.0.3 Merge 30
|
|
570
|
+
|
package/package.json
CHANGED
package/src/store/paramStore.ts
CHANGED
|
@@ -138,8 +138,6 @@ export function emptyPodcastData(): Podcast{
|
|
|
138
138
|
oAuthParam: {
|
|
139
139
|
accessToken: string | undefined;
|
|
140
140
|
refreshToken: string | undefined;
|
|
141
|
-
accessTokenUri: string | undefined;
|
|
142
|
-
clientId: string | undefined;
|
|
143
141
|
expiration: number | undefined;
|
|
144
142
|
};
|
|
145
143
|
media: Media;
|
|
@@ -250,8 +248,6 @@ export function emptyPodcastData(): Podcast{
|
|
|
250
248
|
oAuthParam: {
|
|
251
249
|
accessToken: undefined ,
|
|
252
250
|
refreshToken: undefined ,
|
|
253
|
-
accessTokenUri: undefined ,
|
|
254
|
-
clientId: undefined ,
|
|
255
251
|
expiration:undefined
|
|
256
252
|
},
|
|
257
253
|
media: {
|