Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix names in source s3 files #30

Merged
merged 2 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions s3-docs/v1.0.0/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -9694,7 +9694,7 @@
"access": "private",
"tagname": "Computed property that returns the resolved parameters.",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -9710,7 +9710,7 @@
"access": "private",
"tagname": "Computed property that returns the current route name and\nany dynamic segments.",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
4 changes: 2 additions & 2 deletions s3-docs/v1.1.2/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -9357,7 +9357,7 @@
"access": "private",
"tagname": "Computed property that returns the resolved parameters.",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -9373,7 +9373,7 @@
"access": "private",
"tagname": "Computed property that returns the current route name and\nany dynamic segments.",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.10.1/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -8549,7 +8549,7 @@
"line": 12,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly.\n\nExample\n\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\nEmber.expandProperties('foo.{bar,baz}.@each', echo) //=> 'foo.bar.@each', 'foo.baz.@each'\nEmber.expandProperties('{foo,bar}.{spam,eggs}', echo) //=> 'foo.spam', 'foo.eggs', 'bar.spam', 'bar.eggs'\nEmber.expandProperties('{foo}.bar.{baz}') //=> 'foo.bar.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -11281,7 +11281,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -11298,7 +11298,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.11.4/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -8313,7 +8313,7 @@
"line": 11,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly.\n\nExample\n\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\nEmber.expandProperties('foo.{bar,baz}.@each', echo) //=> 'foo.bar.@each', 'foo.baz.@each'\nEmber.expandProperties('{foo,bar}.{spam,eggs}', echo) //=> 'foo.spam', 'foo.eggs', 'bar.spam', 'bar.eggs'\nEmber.expandProperties('{foo}.bar.{baz}') //=> 'foo.bar.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -11091,7 +11091,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -11108,7 +11108,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.12.2/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -8466,7 +8466,7 @@
"line": 11,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly.\n\nExample\n\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> 'foo.baz', 'bar.baz'\nEmber.expandProperties('foo.{bar,baz}.@each', echo) //=> 'foo.bar.@each', 'foo.baz.@each'\nEmber.expandProperties('{foo,bar}.{spam,eggs}', echo) //=> 'foo.spam', 'foo.eggs', 'bar.spam', 'bar.eggs'\nEmber.expandProperties('{foo}.bar.{baz}') //=> 'foo.bar.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -11251,7 +11251,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -11268,7 +11268,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.2.2/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -7987,7 +7987,7 @@
"line": 13,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly. Brace expansion can only appear at the end of a\npattern, for example as the last item in a chain.\n\nExample\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -10463,7 +10463,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -10480,7 +10480,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.3.2/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -7987,7 +7987,7 @@
"line": 13,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly. Brace expansion can only appear at the end of a\npattern, for example as the last item in a chain.\n\nExample\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -10463,7 +10463,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -10480,7 +10480,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.4.0/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -8014,7 +8014,7 @@
"line": 12,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly. Brace expansion can only appear at the end of a\npattern, for example as the last item in a chain.\n\nExample\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -10490,7 +10490,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -10507,7 +10507,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.5.1/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -8302,7 +8302,7 @@
"line": 12,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly. Brace expansion can only appear at the end of a\npattern, for example as the last item in a chain.\n\nExample\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -10788,7 +10788,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -10805,7 +10805,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.6.1/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -9015,7 +9015,7 @@
"line": 11,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly. Brace expansion can only appear at the end of a\npattern, for an example see the last call below.\n\nExample\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -11653,7 +11653,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -11670,7 +11670,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
2 changes: 1 addition & 1 deletion s3-docs/v1.7.1/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -8419,7 +8419,7 @@
"line": 10,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly. Brace expansion can only appear at the end of a\npattern, for an example see the last call below.\n\nExample\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.8.1/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -8822,7 +8822,7 @@
"line": 12,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly.\n\nExample\n\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\nEmber.expandProperties('foo.{bar,baz}.@each', echo) //=> 'foo.bar.@each', 'foo.baz.@each'\nEmber.expandProperties('{foo,bar}.{spam,eggs}', echo) //=> 'foo.spam', 'foo.eggs', 'bar.spam', 'bar.eggs'\nEmber.expandProperties('{foo}.bar.{baz}') //=> 'foo.bar.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -11404,7 +11404,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -11421,7 +11421,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
6 changes: 3 additions & 3 deletions s3-docs/v1.9.1/ember-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -8691,7 +8691,7 @@
"line": 12,
"description": "Expands `pattern`, invoking `callback` for each expansion.\n\nThe only pattern supported is brace-expansion, anything else will be passed\nonce to `callback` directly.\n\nExample\n\n```js\nfunction echo(arg){ console.log(arg); }\n\nEmber.expandProperties('foo.bar', echo); //=> 'foo.bar'\nEmber.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar'\nEmber.expandProperties('foo.{bar,baz}', echo); //=> 'foo.bar', 'foo.baz'\nEmber.expandProperties('{foo,bar}.baz', echo); //=> '{foo,bar}.baz'\nEmber.expandProperties('foo.{bar,baz}.@each', echo) //=> 'foo.bar.@each', 'foo.baz.@each'\nEmber.expandProperties('{foo,bar}.{spam,eggs}', echo) //=> 'foo.spam', 'foo.eggs', 'bar.spam', 'bar.eggs'\nEmber.expandProperties('{foo}.bar.{baz}') //=> 'foo.bar.baz'\n```",
"itemtype": "method",
"name": "",
"name": "expandProperties",
"access": "private",
"tagname": "",
"params": [
Expand Down Expand Up @@ -11256,7 +11256,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "resolvedParams",
"return": {
"description": "",
"type": "Array"
Expand All @@ -11273,7 +11273,7 @@
"access": "private",
"tagname": "",
"itemtype": "property",
"name": "",
"name": "routeArgs",
"return": {
"description": "An array with the route name and any dynamic segments",
"type": "Array"
Expand Down
2 changes: 1 addition & 1 deletion s3-docs/v2.11.3/ember-data-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -2979,7 +2979,7 @@
"line": 62,
"description": "This API allows you to provide a reference with new data. The\nsimplest usage of this API is similar to `store.push`: you provide a\nnormalized hash of data and the object represented by the reference\nwill update.\n\nIf you pass a promise to `push`, Ember Data will not ask the adapter\nfor the data if another attempt to fetch it is made in the\ninterim. When the promise resolves, the underlying object is updated\nwith the new data, and the promise returned by *this function* is resolved\nwith that object.\n\nFor example, `recordReference.push(promise)` will be resolved with a\nrecord.\n\n Example\n\n ```javascript\n var userRef = store.getReference('user', 1);\n\n // provide data for reference\n userRef.push({ data: { id: 1, username: \"@user\" }}).then(function(user) {\n userRef.value() === user;\n });\n ```",
"itemtype": "method",
"name": "",
"name": "push",
"params": [
{
"name": "UNKNOWN",
Expand Down
2 changes: 1 addition & 1 deletion s3-docs/v2.12.2/ember-data-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3366,7 +3366,7 @@
"line": 62,
"description": "This API allows you to provide a reference with new data. The\nsimplest usage of this API is similar to `store.push`: you provide a\nnormalized hash of data and the object represented by the reference\nwill update.\n\nIf you pass a promise to `push`, Ember Data will not ask the adapter\nfor the data if another attempt to fetch it is made in the\ninterim. When the promise resolves, the underlying object is updated\nwith the new data, and the promise returned by *this function* is resolved\nwith that object.\n\nFor example, `recordReference.push(promise)` will be resolved with a\nrecord.\n\n Example\n\n ```javascript\n var userRef = store.getReference('user', 1);\n\n // provide data for reference\n userRef.push({ data: { id: 1, username: \"@user\" }}).then(function(user) {\n userRef.value() === user;\n });\n ```",
"itemtype": "method",
"name": "",
"name": "push",
"params": [
{
"name": "UNKNOWN",
Expand Down
Loading
Loading