@laboratoria/sdk-js 5.3.2 → 6.0.0-beta.1

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -163,16 +163,15 @@ WIP
163
163
  ```js
164
164
  app.project.findMany();
165
165
 
166
- app.project.findMany({ tag: 'v3.0.0' });
166
+ app.project.findMany({ tag: 'v6.5.0' });
167
167
 
168
168
  app.project.findMany({
169
- locale: 'es-ES',
170
- track: 'js',
169
+ track: 'web-dev',
171
170
  });
172
171
 
173
172
  app.project.findById('cipher');
174
173
 
175
- app.project.findById('cipher', { tag: 'v3.0.0' });
174
+ app.project.findById('cipher', { tag: 'v6.5.0' });
176
175
  ```
177
176
 
178
177
  ### Topics
@@ -180,16 +179,15 @@ app.project.findById('cipher', { tag: 'v3.0.0' });
180
179
  ```js
181
180
  app.topic.findMany();
182
181
 
183
- app.topic.findMany({ tag: 'v3.0.0' });
182
+ app.topic.findMany({ tag: 'v6.5.0' });
184
183
 
185
184
  app.topic.findMany({
186
- locale: 'es-ES',
187
- track: 'js',
185
+ track: 'web-dev',
188
186
  });
189
187
 
190
188
  app.topic.findById('javascript');
191
189
 
192
- app.topic.findById('javascript', { tag: 'v3.0.0' });
190
+ app.topic.findById('javascript', { tag: 'v6.5.0' });
193
191
  ```
194
192
 
195
193
  ### Learning Objectives
@@ -197,5 +195,5 @@ app.topic.findById('javascript', { tag: 'v3.0.0' });
197
195
  ```js
198
196
  app.learningObjective.findMany();
199
197
 
200
- app.learningObjective.findMany({ tag: 'v3.0.0' });
198
+ app.learningObjective.findMany({ tag: 'v6.5.0' });
201
199
  ```