Skip to content

Commit

Permalink
fix missing names in source s3 docs for ember-data
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Jul 5, 2024
1 parent 23fcdaa commit bf890c4
Show file tree
Hide file tree
Showing 12 changed files with 145 additions and 145 deletions.
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
28 changes: 14 additions & 14 deletions s3-docs/v2.14.10/ember-data-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3567,7 +3567,7 @@
"\n\n relationshipPayloadsManager.get('hobby', 2, 'user') === {\n {\n data: {\n id: 1,\n type: 'user'\n }\n }\n }"
],
"itemtype": "method",
"name": "",
"name": "get",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3579,7 +3579,7 @@
"\n\n let userPayload = {\n data: {\n id: 1,\n type: 'user',\n relationships: {\n hobbies: {\n data: [{\n id: 2,\n type: 'hobby'\n }]\n }\n }\n },\n };\n relationshipPayloadsManager.push('user', 1, userPayload.data.relationships);"
],
"itemtype": "method",
"name": "",
"name": "push",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3588,7 +3588,7 @@
"line": 128,
"description": "Unload a model's relationships payload.",
"itemtype": "method",
"name": "",
"name": "unload",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3602,7 +3602,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_getRelationshipPayloads",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3613,7 +3613,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_initializeRelationshipPayloads",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3622,7 +3622,7 @@
"line": 81,
"description": "Get the payload for the relationship of an individual record.\n\nThis might return the raw payload as pushed into the store, or one computed\nfrom the payload of the inverse relationship.",
"itemtype": "method",
"name": "",
"name": "get",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3631,7 +3631,7 @@
"line": 100,
"description": "Push a relationship payload for an individual record.\n\nThis will make the payload available later for both this relationship and its inverse.",
"itemtype": "method",
"name": "",
"name": "push",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3640,7 +3640,7 @@
"line": 111,
"description": "Unload the relationship payload for an individual record.\n\nThis does not unload the inverse relationship payload.",
"itemtype": "method",
"name": "",
"name": "unload",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3652,7 +3652,7 @@
"type": "Boolean"
},
"itemtype": "method",
"name": "",
"name": "_isLHS",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3664,7 +3664,7 @@
"type": "Boolean"
},
"itemtype": "method",
"name": "",
"name": "_isRHS",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3675,7 +3675,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_populateInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3686,7 +3686,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_addToInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3695,7 +3695,7 @@
"line": 307,
"description": "Remove the relationship in `previousPayload` from its inverse(s), because\nthis relationship payload has just been updated (eg because the same\nrelationship had multiple payloads pushed before the relationship was\ninitialized).",
"itemtype": "method",
"name": "",
"name": "_removeInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3704,7 +3704,7 @@
"line": 337,
"description": "Remove `id` from its inverse record with id `inverseId`. If the inverse\nrelationship is a belongsTo, this means just setting it to null, if the\ninverse relationship is a hasMany, then remove that id from its array of ids.",
"itemtype": "method",
"name": "",
"name": "_removeFromInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand Down
28 changes: 14 additions & 14 deletions s3-docs/v2.15.4/ember-data-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3565,7 +3565,7 @@
"\n\n relationshipPayloadsManager.get('hobby', 2, 'user') === {\n {\n data: {\n id: 1,\n type: 'user'\n }\n }\n }"
],
"itemtype": "method",
"name": "",
"name": "get",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3577,7 +3577,7 @@
"\n\n let userPayload = {\n data: {\n id: 1,\n type: 'user',\n relationships: {\n hobbies: {\n data: [{\n id: 2,\n type: 'hobby'\n }]\n }\n }\n },\n };\n relationshipPayloadsManager.push('user', 1, userPayload.data.relationships);"
],
"itemtype": "method",
"name": "",
"name": "push",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3586,7 +3586,7 @@
"line": 126,
"description": "Unload a model's relationships payload.",
"itemtype": "method",
"name": "",
"name": "unload",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3600,7 +3600,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_getRelationshipPayloads",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3611,7 +3611,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_initializeRelationshipPayloads",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3620,7 +3620,7 @@
"line": 93,
"description": "Get the payload for the relationship of an individual record.\n\nThis might return the raw payload as pushed into the store, or one computed\nfrom the payload of the inverse relationship.",
"itemtype": "method",
"name": "",
"name": "get",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3629,7 +3629,7 @@
"line": 112,
"description": "Push a relationship payload for an individual record.\n\nThis will make the payload available later for both this relationship and its inverse.",
"itemtype": "method",
"name": "",
"name": "push",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3638,7 +3638,7 @@
"line": 123,
"description": "Unload the relationship payload for an individual record.\n\nThis does not unload the inverse relationship payload.",
"itemtype": "method",
"name": "",
"name": "unload",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3650,7 +3650,7 @@
"type": "Boolean"
},
"itemtype": "method",
"name": "",
"name": "_isLHS",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3662,7 +3662,7 @@
"type": "Boolean"
},
"itemtype": "method",
"name": "",
"name": "_isRHS",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3673,7 +3673,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_populateInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3684,7 +3684,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_addToInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3693,7 +3693,7 @@
"line": 350,
"description": "Remove the relationship in `previousPayload` from its inverse(s), because\nthis relationship payload has just been updated (eg because the same\nrelationship had multiple payloads pushed before the relationship was\ninitialized).",
"itemtype": "method",
"name": "",
"name": "_removeInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3702,7 +3702,7 @@
"line": 381,
"description": "Remove `id` from its inverse record with id `inverseId`. If the inverse\nrelationship is a belongsTo, this means just setting it to null, if the\ninverse relationship is a hasMany, then remove that id from its array of ids.",
"itemtype": "method",
"name": "",
"name": "_removeFromInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand Down
28 changes: 14 additions & 14 deletions s3-docs/v2.16.0/ember-data-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3565,7 +3565,7 @@
"\n\n relationshipPayloadsManager.get('hobby', 2, 'user') === {\n {\n data: {\n id: 1,\n type: 'user'\n }\n }\n }"
],
"itemtype": "method",
"name": "",
"name": "get",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3577,7 +3577,7 @@
"\n\n let userPayload = {\n data: {\n id: 1,\n type: 'user',\n relationships: {\n hobbies: {\n data: [{\n id: 2,\n type: 'hobby'\n }]\n }\n }\n },\n };\n relationshipPayloadsManager.push('user', 1, userPayload.data.relationships);"
],
"itemtype": "method",
"name": "",
"name": "push",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3586,7 +3586,7 @@
"line": 128,
"description": "Unload a model's relationships payload.",
"itemtype": "method",
"name": "",
"name": "unload",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3600,7 +3600,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_getRelationshipPayloads",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3611,7 +3611,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_initializeRelationshipPayloads",
"class": "RelationshipPayloadsManager",
"module": "ember-data"
},
Expand All @@ -3620,7 +3620,7 @@
"line": 81,
"description": "Get the payload for the relationship of an individual record.\n\nThis might return the raw payload as pushed into the store, or one computed\nfrom the payload of the inverse relationship.",
"itemtype": "method",
"name": "",
"name": "get",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3629,7 +3629,7 @@
"line": 100,
"description": "Push a relationship payload for an individual record.\n\nThis will make the payload available later for both this relationship and its inverse.",
"itemtype": "method",
"name": "",
"name": "push",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3638,7 +3638,7 @@
"line": 111,
"description": "Unload the relationship payload for an individual record.\n\nThis does not unload the inverse relationship payload.",
"itemtype": "method",
"name": "",
"name": "unload",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3650,7 +3650,7 @@
"type": "Boolean"
},
"itemtype": "method",
"name": "",
"name": "_isLHS",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3662,7 +3662,7 @@
"type": "Boolean"
},
"itemtype": "method",
"name": "",
"name": "_isRHS",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3673,7 +3673,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_populateInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3684,7 +3684,7 @@
"access": "private",
"tagname": "",
"itemtype": "method",
"name": "",
"name": "_addToInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3693,7 +3693,7 @@
"line": 313,
"description": "Remove the relationship in `previousPayload` from its inverse(s), because\nthis relationship payload has just been updated (eg because the same\nrelationship had multiple payloads pushed before the relationship was\ninitialized).",
"itemtype": "method",
"name": "",
"name": "_removeInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand All @@ -3702,7 +3702,7 @@
"line": 343,
"description": "Remove `id` from its inverse record with id `inverseId`. If the inverse\nrelationship is a belongsTo, this means just setting it to null, if the\ninverse relationship is a hasMany, then remove that id from its array of ids.",
"itemtype": "method",
"name": "",
"name": "_removeFromInverse",
"class": "RelationshipPayloads",
"module": "ember-data"
},
Expand Down
Loading

0 comments on commit bf890c4

Please sign in to comment.