delectusnon 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.prettierignore +2 -0
- package/.travis.yml +33 -0
- package/.vscode/launch.json +24 -0
- package/.vscode/settings.json +3 -0
- package/demos/ago-node-cli/README.md +29 -0
- package/demos/ago-node-cli/ago.js +32 -0
- package/demos/ago-node-cli/index.js +11 -0
- package/demos/ago-node-cli/lib/item-export-command.js +48 -0
- package/demos/ago-node-cli/lib/item-search-command.js +35 -0
- package/demos/ago-node-cli/package-lock.json +172 -0
- package/demos/ago-node-cli/package.json +30 -0
- package/demos/attachments/README.md +5 -0
- package/demos/attachments/index.html +164 -0
- package/demos/attachments/package-lock.json +182 -0
- package/demos/attachments/package.json +18 -0
- package/demos/batch-geocoder-node/NYC_Restaurant_Inspection_Results.csv +100 -0
- package/demos/batch-geocoder-node/README.md +15 -0
- package/demos/batch-geocoder-node/batch-geocode.js +118 -0
- package/demos/batch-geocoder-node/config-template.js +18 -0
- package/demos/batch-geocoder-node/package-lock.json +116 -0
- package/demos/batch-geocoder-node/package.json +39 -0
- package/demos/express/README.md +10 -0
- package/demos/express/config.json.template +3 -0
- package/demos/express/package-lock.json +473 -0
- package/demos/express/package.json +18 -0
- package/demos/express/server.js +28 -0
- package/demos/feature-service-browser/README.md +6 -0
- package/demos/feature-service-browser/index.html +122 -0
- package/demos/feature-service-browser/package-lock.json +182 -0
- package/demos/feature-service-browser/package.json +18 -0
- package/demos/geocoder-browser/README.md +10 -0
- package/demos/geocoder-browser/config.js.template +1 -0
- package/demos/geocoder-browser/index.html +131 -0
- package/demos/geocoder-browser/package-lock.json +182 -0
- package/demos/geocoder-browser/package.json +19 -0
- package/demos/geocoder-browser/post-sign-in.html +25 -0
- package/demos/jsapi-integration/README.md +8 -0
- package/demos/jsapi-integration/config.js +6 -0
- package/demos/jsapi-integration/index.html +79 -0
- package/demos/jsapi-integration/package-lock.json +184 -0
- package/demos/jsapi-integration/package.json +19 -0
- package/demos/oauth2-browser/README.md +12 -0
- package/demos/oauth2-browser/authenticate.html +32 -0
- package/demos/oauth2-browser/config.js.template +6 -0
- package/demos/oauth2-browser/index.html +202 -0
- package/demos/oauth2-browser/logo.svg +4 -0
- package/demos/oauth2-browser/package-lock.json +163 -0
- package/demos/oauth2-browser/package.json +18 -0
- package/demos/oauth2-browser/style.css +36 -0
- package/demos/oauth2-browser-retry/README.md +25 -0
- package/demos/oauth2-browser-retry/authenticate.html +21 -0
- package/demos/oauth2-browser-retry/index.html +116 -0
- package/demos/oauth2-browser-retry/logo.svg +4 -0
- package/demos/vue/.env.example +11 -0
- package/demos/vue/.eslintrc.js +17 -0
- package/demos/vue/.postcssrc.js +5 -0
- package/demos/vue/README.md +17 -0
- package/demos/vue/babel.config.js +3 -0
- package/demos/vue/package-lock.json +11323 -0
- package/demos/vue/package.json +33 -0
- package/demos/vue/public/favicon.ico +0 -0
- package/demos/vue/public/index.html +24 -0
- package/demos/vue/src/assets/logo.svg +29 -0
- package/demos/vue/src/components/App.vue +308 -0
- package/demos/vue/src/components/Authenticate.vue +65 -0
- package/demos/vue/src/components/Loader.vue +230 -0
- package/demos/vue/src/main.js +92 -0
- package/docs/FAQ.md +28 -0
- package/docs/HISTORY.md +62 -0
- package/docs/acetate.config.js +223 -0
- package/docs/build-typedoc.js +301 -0
- package/docs/src/_layout.html +82 -0
- package/docs/src/api/_declaration.html +496 -0
- package/docs/src/api/_layout.html +127 -0
- package/docs/src/api/_package.html +13 -0
- package/docs/src/api/index.html +23 -0
- package/docs/src/guides/_layout.html +24 -0
- package/docs/src/guides/amd-requirejs-dojo.md +40 -0
- package/docs/src/guides/babel-and-rollup.md +30 -0
- package/docs/src/guides/babel-and-webpack.md +30 -0
- package/docs/src/guides/browser-authentication.md +31 -0
- package/docs/src/guides/browserify.md +9 -0
- package/docs/src/guides/cli-authentication.md +9 -0
- package/docs/src/guides/client-server-authentication.md +9 -0
- package/docs/src/guides/from-a-cdn.md +36 -0
- package/docs/src/guides/index.md +52 -0
- package/docs/src/guides/node.md +70 -0
- package/docs/src/guides/package-overview.md +8 -0
- package/docs/src/guides/server-authentication.md +9 -0
- package/docs/src/guides/typescript-and-webpack.md +9 -0
- package/docs/src/img/icons.png +0 -0
- package/docs/src/img/icons@2x.png +0 -0
- package/docs/src/index.html +12 -0
- package/docs/src/js/api-search.js +112 -0
- package/docs/src/js/nav-toggle.js +41 -0
- package/docs/src/sass/_highlight.scss +96 -0
- package/docs/src/sass/_icons.scss +157 -0
- package/docs/src/sass/style.scss +169 -0
- package/jasmine.json +7 -0
- package/karma.conf.js +100 -0
- package/lerna.json +8 -0
- package/notes/README.md +88 -0
- package/package.json +88 -0
- package/packages/arcgis-rest-auth/README.md +64 -0
- package/packages/arcgis-rest-auth/package-lock.json +11 -0
- package/packages/arcgis-rest-auth/package.json +51 -0
- package/packages/arcgis-rest-auth/src/ApplicationSession.ts +109 -0
- package/packages/arcgis-rest-auth/src/UserSession.ts +873 -0
- package/packages/arcgis-rest-auth/src/authenticated-request-options.ts +24 -0
- package/packages/arcgis-rest-auth/src/fetch-token.ts +52 -0
- package/packages/arcgis-rest-auth/src/generate-token.ts +39 -0
- package/packages/arcgis-rest-auth/src/index.ts +8 -0
- package/packages/arcgis-rest-auth/test/ApplicationSession.test.ts +124 -0
- package/packages/arcgis-rest-auth/test/UserSession.test.ts +995 -0
- package/packages/arcgis-rest-auth/test/fetchToken.test.ts +112 -0
- package/packages/arcgis-rest-auth/test/generateToken.test.ts +130 -0
- package/packages/arcgis-rest-auth/test/utils.ts +14 -0
- package/packages/arcgis-rest-auth/tsconfig.json +6 -0
- package/packages/arcgis-rest-common-types/README.md +61 -0
- package/packages/arcgis-rest-common-types/package.json +38 -0
- package/packages/arcgis-rest-common-types/src/group.ts +54 -0
- package/packages/arcgis-rest-common-types/src/index.ts +467 -0
- package/packages/arcgis-rest-common-types/src/item.ts +45 -0
- package/packages/arcgis-rest-common-types/src/webmap.ts +1232 -0
- package/packages/arcgis-rest-common-types/tsconfig.json +11 -0
- package/packages/arcgis-rest-feature-service/README.md +70 -0
- package/packages/arcgis-rest-feature-service/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service/package.json +50 -0
- package/packages/arcgis-rest-feature-service/src/add.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/addAttachment.ts +65 -0
- package/packages/arcgis-rest-feature-service/src/delete.ts +85 -0
- package/packages/arcgis-rest-feature-service/src/deleteAttachments.ts +68 -0
- package/packages/arcgis-rest-feature-service/src/getAttachments.ts +64 -0
- package/packages/arcgis-rest-feature-service/src/helpers.ts +80 -0
- package/packages/arcgis-rest-feature-service/src/index.ts +12 -0
- package/packages/arcgis-rest-feature-service/src/query.ts +172 -0
- package/packages/arcgis-rest-feature-service/src/queryRelated.ts +91 -0
- package/packages/arcgis-rest-feature-service/src/update.ts +81 -0
- package/packages/arcgis-rest-feature-service/src/updateAttachment.ts +74 -0
- package/packages/arcgis-rest-feature-service/test/attachments.test.ts +203 -0
- package/packages/arcgis-rest-feature-service/test/features.test.ts +252 -0
- package/packages/arcgis-rest-feature-service/test/mocks/feature.ts +279 -0
- package/packages/arcgis-rest-feature-service/test/mocks/foo.txt +1 -0
- package/packages/arcgis-rest-feature-service/tsconfig.json +6 -0
- package/packages/arcgis-rest-feature-service-admin/README.md +66 -0
- package/packages/arcgis-rest-feature-service-admin/package-lock.json +11 -0
- package/packages/arcgis-rest-feature-service-admin/package.json +53 -0
- package/packages/arcgis-rest-feature-service-admin/src/addTo.ts +70 -0
- package/packages/arcgis-rest-feature-service-admin/src/create.ts +195 -0
- package/packages/arcgis-rest-feature-service-admin/src/index.ts +2 -0
- package/packages/arcgis-rest-feature-service-admin/test/addTo.test.ts +310 -0
- package/packages/arcgis-rest-feature-service-admin/test/create.test.ts +412 -0
- package/packages/arcgis-rest-feature-service-admin/test/mocks/move.ts +14 -0
- package/packages/arcgis-rest-feature-service-admin/test/mocks/service.ts +72 -0
- package/packages/arcgis-rest-feature-service-admin/tsconfig.json +6 -0
- package/packages/arcgis-rest-geocoder/README.md +79 -0
- package/packages/arcgis-rest-geocoder/package-lock.json +11 -0
- package/packages/arcgis-rest-geocoder/package.json +52 -0
- package/packages/arcgis-rest-geocoder/src/bulk.ts +102 -0
- package/packages/arcgis-rest-geocoder/src/geocode.ts +117 -0
- package/packages/arcgis-rest-geocoder/src/helpers.ts +79 -0
- package/packages/arcgis-rest-geocoder/src/index.ts +8 -0
- package/packages/arcgis-rest-geocoder/src/reverse.ts +84 -0
- package/packages/arcgis-rest-geocoder/src/suggest.ts +72 -0
- package/packages/arcgis-rest-geocoder/test/bulk.test.ts +113 -0
- package/packages/arcgis-rest-geocoder/test/geocode.test.ts +121 -0
- package/packages/arcgis-rest-geocoder/test/helpers.test.ts +113 -0
- package/packages/arcgis-rest-geocoder/test/mocks/responses.ts +591 -0
- package/packages/arcgis-rest-geocoder/test/reverse.test.ts +126 -0
- package/packages/arcgis-rest-geocoder/test/suggest.test.ts +77 -0
- package/packages/arcgis-rest-geocoder/tsconfig.json +6 -0
- package/packages/arcgis-rest-groups/README.md +64 -0
- package/packages/arcgis-rest-groups/package-lock.json +11 -0
- package/packages/arcgis-rest-groups/package.json +52 -0
- package/packages/arcgis-rest-groups/src/create.ts +34 -0
- package/packages/arcgis-rest-groups/src/get.ts +95 -0
- package/packages/arcgis-rest-groups/src/helpers.ts +26 -0
- package/packages/arcgis-rest-groups/src/index.ts +11 -0
- package/packages/arcgis-rest-groups/src/notification.ts +77 -0
- package/packages/arcgis-rest-groups/src/protect.ts +40 -0
- package/packages/arcgis-rest-groups/src/remove.ts +23 -0
- package/packages/arcgis-rest-groups/src/search.ts +64 -0
- package/packages/arcgis-rest-groups/src/update.ts +36 -0
- package/packages/arcgis-rest-groups/test/crud.test.ts +104 -0
- package/packages/arcgis-rest-groups/test/get.test.ts +101 -0
- package/packages/arcgis-rest-groups/test/mocks/responses.ts +141 -0
- package/packages/arcgis-rest-groups/test/notification.test.ts +102 -0
- package/packages/arcgis-rest-groups/test/protect.test.ts +64 -0
- package/packages/arcgis-rest-groups/test/search.test.ts +85 -0
- package/packages/arcgis-rest-groups/tsconfig.json +6 -0
- package/packages/arcgis-rest-items/README.md +66 -0
- package/packages/arcgis-rest-items/package-lock.json +11 -0
- package/packages/arcgis-rest-items/package.json +52 -0
- package/packages/arcgis-rest-items/src/add.ts +103 -0
- package/packages/arcgis-rest-items/src/create.ts +110 -0
- package/packages/arcgis-rest-items/src/get.ts +79 -0
- package/packages/arcgis-rest-items/src/helpers.ts +147 -0
- package/packages/arcgis-rest-items/src/index.ts +11 -0
- package/packages/arcgis-rest-items/src/protect.ts +38 -0
- package/packages/arcgis-rest-items/src/remove.ts +58 -0
- package/packages/arcgis-rest-items/src/search.ts +78 -0
- package/packages/arcgis-rest-items/src/update.ts +134 -0
- package/packages/arcgis-rest-items/test/add.test.ts +256 -0
- package/packages/arcgis-rest-items/test/create.test.ts +371 -0
- package/packages/arcgis-rest-items/test/get.test.ts +181 -0
- package/packages/arcgis-rest-items/test/mocks/foo.zip +0 -0
- package/packages/arcgis-rest-items/test/mocks/item.ts +33 -0
- package/packages/arcgis-rest-items/test/mocks/resources.ts +31 -0
- package/packages/arcgis-rest-items/test/mocks/search.ts +63 -0
- package/packages/arcgis-rest-items/test/protect.test.ts +122 -0
- package/packages/arcgis-rest-items/test/remove.test.ts +161 -0
- package/packages/arcgis-rest-items/test/search.test.ts +159 -0
- package/packages/arcgis-rest-items/test/update.test.ts +450 -0
- package/packages/arcgis-rest-items/tsconfig.json +6 -0
- package/packages/arcgis-rest-request/README.md +65 -0
- package/packages/arcgis-rest-request/package-lock.json +11 -0
- package/packages/arcgis-rest-request/package.json +42 -0
- package/packages/arcgis-rest-request/src/index.ts +13 -0
- package/packages/arcgis-rest-request/src/request.ts +293 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISAuthError.ts +67 -0
- package/packages/arcgis-rest-request/src/utils/ArcGISRequestError.ts +76 -0
- package/packages/arcgis-rest-request/src/utils/ErrorTypes.ts +29 -0
- package/packages/arcgis-rest-request/src/utils/check-for-errors.ts +65 -0
- package/packages/arcgis-rest-request/src/utils/encode-form-data.ts +34 -0
- package/packages/arcgis-rest-request/src/utils/encode-query-string.ts +23 -0
- package/packages/arcgis-rest-request/src/utils/get-portal-url.ts +25 -0
- package/packages/arcgis-rest-request/src/utils/get-portal.ts +45 -0
- package/packages/arcgis-rest-request/src/utils/process-params.ts +99 -0
- package/packages/arcgis-rest-request/test/mocks/errors.ts +68 -0
- package/packages/arcgis-rest-request/test/mocks/geojson-feature-collection.ts +13 -0
- package/packages/arcgis-rest-request/test/mocks/portal.ts +112 -0
- package/packages/arcgis-rest-request/test/mocks/sharing-rest-info.ts +41 -0
- package/packages/arcgis-rest-request/test/mocks/webmap.ts +41 -0
- package/packages/arcgis-rest-request/test/request.test.ts +299 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISAuthError.test.ts +170 -0
- package/packages/arcgis-rest-request/test/utils/ArcGISRequestError.test.ts +51 -0
- package/packages/arcgis-rest-request/test/utils/check-for-errors.test.ts +111 -0
- package/packages/arcgis-rest-request/test/utils/encode-form-data.test.ts +133 -0
- package/packages/arcgis-rest-request/test/utils/get-portal-url.test.ts +37 -0
- package/packages/arcgis-rest-request/test/utils/portal.test.ts +97 -0
- package/packages/arcgis-rest-request/test/utils/process-params.test.ts +193 -0
- package/packages/arcgis-rest-request/tsconfig.json +6 -0
- package/packages/arcgis-rest-sharing/README.md +67 -0
- package/packages/arcgis-rest-sharing/package-lock.json +11 -0
- package/packages/arcgis-rest-sharing/package.json +57 -0
- package/packages/arcgis-rest-sharing/src/access.ts +85 -0
- package/packages/arcgis-rest-sharing/src/group-sharing.ts +211 -0
- package/packages/arcgis-rest-sharing/src/helpers.ts +82 -0
- package/packages/arcgis-rest-sharing/src/index.ts +5 -0
- package/packages/arcgis-rest-sharing/test/access.test.ts +154 -0
- package/packages/arcgis-rest-sharing/test/group-sharing.test.ts +566 -0
- package/packages/arcgis-rest-sharing/test/helpers.test.ts +55 -0
- package/packages/arcgis-rest-sharing/test/mocks/sharing.ts +18 -0
- package/packages/arcgis-rest-sharing/tsconfig.json +6 -0
- package/packages/arcgis-rest-users/README.md +71 -0
- package/packages/arcgis-rest-users/package-lock.json +11 -0
- package/packages/arcgis-rest-users/package.json +51 -0
- package/packages/arcgis-rest-users/src/get.ts +69 -0
- package/packages/arcgis-rest-users/src/index.ts +6 -0
- package/packages/arcgis-rest-users/src/invitation.ts +166 -0
- package/packages/arcgis-rest-users/src/notification.ts +73 -0
- package/packages/arcgis-rest-users/test/get.test.ts +99 -0
- package/packages/arcgis-rest-users/test/invitation.test.ts +169 -0
- package/packages/arcgis-rest-users/test/mocks/invitation.ts +70 -0
- package/packages/arcgis-rest-users/test/mocks/notification.ts +34 -0
- package/packages/arcgis-rest-users/test/mocks/user.ts +173 -0
- package/packages/arcgis-rest-users/test/notification.test.ts +83 -0
- package/packages/arcgis-rest-users/tsconfig.json +6 -0
- package/support/changelog.js +394 -0
- package/support/deploy-doc-site.js +16 -0
- package/support/publish.sh +43 -0
- package/support/test-helpers.js +8 -0
- package/tsconfig.json +69 -0
- package/tslint.json +15 -0
- package/umd-base-profile.js +82 -0
- package/umd-production-profile.js +13 -0
@@ -0,0 +1,371 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import * as fetchMock from "fetch-mock";
|
5
|
+
|
6
|
+
import { createFolder, createItem, createItemInFolder } from "../src/create";
|
7
|
+
|
8
|
+
import { ItemSuccessResponse } from "./mocks/item";
|
9
|
+
|
10
|
+
import { UserSession } from "@esri/arcgis-rest-auth";
|
11
|
+
import { TOMORROW } from "@esri/arcgis-rest-auth/test/utils";
|
12
|
+
import { encodeParam } from "@esri/arcgis-rest-request";
|
13
|
+
|
14
|
+
describe("search", () => {
|
15
|
+
afterEach(fetchMock.restore);
|
16
|
+
|
17
|
+
describe("Authenticated methods", () => {
|
18
|
+
// setup a UserSession to use in all these tests
|
19
|
+
const MOCK_USER_SESSION = new UserSession({
|
20
|
+
clientId: "clientId",
|
21
|
+
redirectUri: "https://example-app.com/redirect-uri",
|
22
|
+
token: "fake-token",
|
23
|
+
tokenExpires: TOMORROW,
|
24
|
+
refreshToken: "refreshToken",
|
25
|
+
refreshTokenExpires: TOMORROW,
|
26
|
+
refreshTokenTTL: 1440,
|
27
|
+
username: "casey",
|
28
|
+
password: "123456",
|
29
|
+
portal: "https://myorg.maps.arcgis.com/sharing/rest"
|
30
|
+
});
|
31
|
+
|
32
|
+
const MOCK_USER_REQOPTS = {
|
33
|
+
authentication: MOCK_USER_SESSION
|
34
|
+
};
|
35
|
+
|
36
|
+
it("should create an item with data", done => {
|
37
|
+
fetchMock.once("*", ItemSuccessResponse);
|
38
|
+
const fakeItem = {
|
39
|
+
owner: "dbouwman",
|
40
|
+
title: "my fake item",
|
41
|
+
description: "yep its fake",
|
42
|
+
snipped: "so very fake",
|
43
|
+
type: "Web Mapping Application",
|
44
|
+
typeKeywords: ["fake", "kwds"],
|
45
|
+
tags: ["fakey", "mcfakepants"],
|
46
|
+
properties: {
|
47
|
+
key: "somevalue"
|
48
|
+
},
|
49
|
+
data: {
|
50
|
+
values: {
|
51
|
+
key: "value"
|
52
|
+
}
|
53
|
+
}
|
54
|
+
};
|
55
|
+
createItem({
|
56
|
+
item: fakeItem,
|
57
|
+
owner: "dbouwman",
|
58
|
+
...MOCK_USER_REQOPTS
|
59
|
+
})
|
60
|
+
.then(response => {
|
61
|
+
expect(fetchMock.called()).toEqual(true);
|
62
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
63
|
+
expect(url).toEqual(
|
64
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/users/dbouwman/addItem"
|
65
|
+
);
|
66
|
+
expect(options.method).toBe("POST");
|
67
|
+
expect(options.body).toContain("f=json");
|
68
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
69
|
+
expect(options.body).toContain("owner=dbouwman");
|
70
|
+
// ensure the array props are serialized into strings
|
71
|
+
expect(options.body).toContain(
|
72
|
+
encodeParam("typeKeywords", "fake, kwds")
|
73
|
+
);
|
74
|
+
expect(options.body).toContain(
|
75
|
+
encodeParam("tags", "fakey, mcfakepants")
|
76
|
+
);
|
77
|
+
expect(options.body).toContain(
|
78
|
+
encodeParam("properties", JSON.stringify(fakeItem.properties))
|
79
|
+
);
|
80
|
+
|
81
|
+
done();
|
82
|
+
})
|
83
|
+
.catch(e => {
|
84
|
+
fail(e);
|
85
|
+
});
|
86
|
+
});
|
87
|
+
|
88
|
+
it("should create an item without an explicit owner", done => {
|
89
|
+
fetchMock.once("*", ItemSuccessResponse);
|
90
|
+
const fakeItem = {
|
91
|
+
title: "my fake item",
|
92
|
+
owner: "dbouwman",
|
93
|
+
description: "yep its fake",
|
94
|
+
snipped: "so very fake",
|
95
|
+
type: "Web Mapping Application",
|
96
|
+
typeKeywords: ["fake", "kwds"],
|
97
|
+
tags: ["fakey", "mcfakepants"],
|
98
|
+
properties: {
|
99
|
+
key: "somevalue"
|
100
|
+
}
|
101
|
+
};
|
102
|
+
createItem({
|
103
|
+
item: fakeItem,
|
104
|
+
...MOCK_USER_REQOPTS
|
105
|
+
})
|
106
|
+
.then(response => {
|
107
|
+
expect(fetchMock.called()).toEqual(true);
|
108
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
109
|
+
expect(url).toEqual(
|
110
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/users/dbouwman/addItem"
|
111
|
+
);
|
112
|
+
expect(options.method).toBe("POST");
|
113
|
+
expect(options.body).toContain("f=json");
|
114
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
115
|
+
expect(options.body).toContain("owner=dbouwman");
|
116
|
+
// ensure the array props are serialized into strings
|
117
|
+
expect(options.body).toContain(
|
118
|
+
encodeParam("typeKeywords", "fake, kwds")
|
119
|
+
);
|
120
|
+
expect(options.body).toContain(
|
121
|
+
encodeParam("tags", "fakey, mcfakepants")
|
122
|
+
);
|
123
|
+
expect(options.body).toContain(
|
124
|
+
encodeParam("properties", JSON.stringify(fakeItem.properties))
|
125
|
+
);
|
126
|
+
|
127
|
+
done();
|
128
|
+
})
|
129
|
+
.catch(e => {
|
130
|
+
fail(e);
|
131
|
+
});
|
132
|
+
});
|
133
|
+
|
134
|
+
it("should create an item with only a username from auth", done => {
|
135
|
+
fetchMock.once("*", ItemSuccessResponse);
|
136
|
+
const fakeItem = {
|
137
|
+
title: "my fake item",
|
138
|
+
description: "yep its fake",
|
139
|
+
snipped: "so very fake",
|
140
|
+
type: "Web Mapping Application",
|
141
|
+
typeKeywords: ["fake", "kwds"],
|
142
|
+
tags: ["fakey", "mcfakepants"],
|
143
|
+
properties: {
|
144
|
+
key: "somevalue"
|
145
|
+
}
|
146
|
+
};
|
147
|
+
// why not just use item.owner??
|
148
|
+
createItem({
|
149
|
+
item: fakeItem,
|
150
|
+
...MOCK_USER_REQOPTS
|
151
|
+
})
|
152
|
+
.then(response => {
|
153
|
+
expect(fetchMock.called()).toEqual(true);
|
154
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
155
|
+
expect(url).toEqual(
|
156
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/users/casey/addItem"
|
157
|
+
);
|
158
|
+
expect(options.method).toBe("POST");
|
159
|
+
expect(options.body).toContain("f=json");
|
160
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
161
|
+
// expect(options.body).toContain("owner=casey");
|
162
|
+
// ensure the array props are serialized into strings
|
163
|
+
expect(options.body).toContain(
|
164
|
+
encodeParam("typeKeywords", "fake, kwds")
|
165
|
+
);
|
166
|
+
expect(options.body).toContain(
|
167
|
+
encodeParam("tags", "fakey, mcfakepants")
|
168
|
+
);
|
169
|
+
expect(options.body).toContain(
|
170
|
+
encodeParam("properties", JSON.stringify(fakeItem.properties))
|
171
|
+
);
|
172
|
+
|
173
|
+
done();
|
174
|
+
})
|
175
|
+
.catch(e => {
|
176
|
+
fail(e);
|
177
|
+
});
|
178
|
+
});
|
179
|
+
|
180
|
+
it("should create an item with no tags or typeKeywords", done => {
|
181
|
+
fetchMock.once("*", ItemSuccessResponse);
|
182
|
+
const fakeItem = {
|
183
|
+
title: "my fake item",
|
184
|
+
description: "yep its fake",
|
185
|
+
snipped: "so very fake",
|
186
|
+
type: "Web Mapping Application",
|
187
|
+
properties: {
|
188
|
+
key: "somevalue"
|
189
|
+
}
|
190
|
+
};
|
191
|
+
createItem({
|
192
|
+
item: fakeItem,
|
193
|
+
...MOCK_USER_REQOPTS
|
194
|
+
})
|
195
|
+
.then(response => {
|
196
|
+
expect(fetchMock.called()).toEqual(true);
|
197
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
198
|
+
expect(url).toEqual(
|
199
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/users/casey/addItem"
|
200
|
+
);
|
201
|
+
expect(options.method).toBe("POST");
|
202
|
+
expect(options.body).toContain("f=json");
|
203
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
204
|
+
expect(options.body).toContain(
|
205
|
+
encodeParam("type", "Web Mapping Application")
|
206
|
+
);
|
207
|
+
// ensure the array props are serialized into strings
|
208
|
+
expect(options.body).toContain(
|
209
|
+
encodeParam("properties", JSON.stringify(fakeItem.properties))
|
210
|
+
);
|
211
|
+
|
212
|
+
done();
|
213
|
+
})
|
214
|
+
.catch(e => {
|
215
|
+
fail(e);
|
216
|
+
});
|
217
|
+
});
|
218
|
+
|
219
|
+
it("should create an item in a folder", done => {
|
220
|
+
fetchMock.once("*", ItemSuccessResponse);
|
221
|
+
const fakeItem = {
|
222
|
+
owner: "dbouwman",
|
223
|
+
title: "my fake item",
|
224
|
+
description: "yep its fake",
|
225
|
+
snipped: "so very fake",
|
226
|
+
type: "Web Mapping Application",
|
227
|
+
typeKeywords: ["fake", "kwds"],
|
228
|
+
tags: ["fakey", "mcfakepants"]
|
229
|
+
};
|
230
|
+
createItemInFolder({
|
231
|
+
owner: "dbouwman",
|
232
|
+
item: fakeItem,
|
233
|
+
folder: "someFolder",
|
234
|
+
...MOCK_USER_REQOPTS
|
235
|
+
})
|
236
|
+
.then(response => {
|
237
|
+
expect(fetchMock.called()).toEqual(true);
|
238
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
239
|
+
expect(url).toEqual(
|
240
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/users/dbouwman/someFolder/addItem"
|
241
|
+
);
|
242
|
+
expect(options.method).toBe("POST");
|
243
|
+
expect(options.body).toContain("f=json");
|
244
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
245
|
+
expect(options.body).toContain("owner=dbouwman");
|
246
|
+
// ensure the array props are serialized into strings
|
247
|
+
expect(options.body).toContain(
|
248
|
+
encodeParam("typeKeywords", "fake, kwds")
|
249
|
+
);
|
250
|
+
expect(options.body).toContain(
|
251
|
+
encodeParam("tags", "fakey, mcfakepants")
|
252
|
+
);
|
253
|
+
done();
|
254
|
+
})
|
255
|
+
.catch(e => {
|
256
|
+
fail(e);
|
257
|
+
});
|
258
|
+
});
|
259
|
+
|
260
|
+
it("should create an item in a folder and pass through arbitrary params", done => {
|
261
|
+
fetchMock.once("*", ItemSuccessResponse);
|
262
|
+
const fakeItem = {
|
263
|
+
owner: "dbouwman",
|
264
|
+
title: "my fake item",
|
265
|
+
description: "yep its fake",
|
266
|
+
snipped: "so very fake",
|
267
|
+
type: "Web Mapping Application",
|
268
|
+
typeKeywords: ["fake", "kwds"],
|
269
|
+
tags: ["fakey", "mcfakepants"]
|
270
|
+
};
|
271
|
+
createItemInFolder({
|
272
|
+
owner: "dbouwman",
|
273
|
+
item: fakeItem,
|
274
|
+
folder: "someFolder",
|
275
|
+
params: {
|
276
|
+
foo: "bar"
|
277
|
+
},
|
278
|
+
...MOCK_USER_REQOPTS
|
279
|
+
})
|
280
|
+
.then(response => {
|
281
|
+
expect(fetchMock.called()).toEqual(true);
|
282
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
283
|
+
expect(url).toEqual(
|
284
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/users/dbouwman/someFolder/addItem"
|
285
|
+
);
|
286
|
+
expect(options.method).toBe("POST");
|
287
|
+
expect(options.body).toContain("f=json");
|
288
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
289
|
+
expect(options.body).toContain("owner=dbouwman");
|
290
|
+
expect(options.body).toContain("foo=bar");
|
291
|
+
// ensure the array props are serialized into strings
|
292
|
+
expect(options.body).toContain(
|
293
|
+
encodeParam("typeKeywords", "fake, kwds")
|
294
|
+
);
|
295
|
+
expect(options.body).toContain(
|
296
|
+
encodeParam("tags", "fakey, mcfakepants")
|
297
|
+
);
|
298
|
+
done();
|
299
|
+
})
|
300
|
+
.catch(e => {
|
301
|
+
fail(e);
|
302
|
+
});
|
303
|
+
});
|
304
|
+
|
305
|
+
it("should create an item in a folder when no owner is passed", done => {
|
306
|
+
fetchMock.once("*", ItemSuccessResponse);
|
307
|
+
const fakeItem = {
|
308
|
+
owner: "casey",
|
309
|
+
title: "my fake item",
|
310
|
+
description: "yep its fake",
|
311
|
+
snipped: "so very fake",
|
312
|
+
type: "Web Mapping Application",
|
313
|
+
typeKeywords: ["fake", "kwds"],
|
314
|
+
tags: ["fakey", "mcfakepants"]
|
315
|
+
};
|
316
|
+
createItemInFolder({
|
317
|
+
item: fakeItem,
|
318
|
+
...MOCK_USER_REQOPTS
|
319
|
+
})
|
320
|
+
.then(response => {
|
321
|
+
expect(fetchMock.called()).toEqual(true);
|
322
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
323
|
+
expect(url).toEqual(
|
324
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/users/casey/addItem"
|
325
|
+
);
|
326
|
+
expect(options.method).toBe("POST");
|
327
|
+
expect(options.body).toContain("f=json");
|
328
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
329
|
+
expect(options.body).toContain("owner=casey");
|
330
|
+
// ensure the array props are serialized into strings
|
331
|
+
expect(options.body).toContain(
|
332
|
+
encodeParam("typeKeywords", "fake, kwds")
|
333
|
+
);
|
334
|
+
expect(options.body).toContain(
|
335
|
+
encodeParam("tags", "fakey, mcfakepants")
|
336
|
+
);
|
337
|
+
done();
|
338
|
+
})
|
339
|
+
.catch(e => {
|
340
|
+
fail(e);
|
341
|
+
});
|
342
|
+
});
|
343
|
+
|
344
|
+
it("should create a folder", done => {
|
345
|
+
fetchMock.once("*", ItemSuccessResponse);
|
346
|
+
const title = "an amazing folder";
|
347
|
+
createFolder({
|
348
|
+
title,
|
349
|
+
...MOCK_USER_REQOPTS
|
350
|
+
})
|
351
|
+
.then(response => {
|
352
|
+
expect(fetchMock.called()).toEqual(true);
|
353
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
354
|
+
expect(url).toEqual(
|
355
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/users/casey/createFolder"
|
356
|
+
);
|
357
|
+
expect(options.method).toBe("POST");
|
358
|
+
expect(options.body).toContain(
|
359
|
+
"title=" + title.replace(/\s/g, "%20")
|
360
|
+
);
|
361
|
+
expect(options.body).toContain("f=json");
|
362
|
+
expect(options.body).toContain(encodeParam("token", "fake-token"));
|
363
|
+
|
364
|
+
done();
|
365
|
+
})
|
366
|
+
.catch(e => {
|
367
|
+
fail(e);
|
368
|
+
});
|
369
|
+
});
|
370
|
+
}); // auth requests
|
371
|
+
});
|
@@ -0,0 +1,181 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import * as fetchMock from "fetch-mock";
|
5
|
+
|
6
|
+
import { getItem, getItemData, getItemResources } from "../src/get";
|
7
|
+
|
8
|
+
import { ItemResponse, ItemDataResponse } from "./mocks/item";
|
9
|
+
|
10
|
+
import { GetItemResourcesResponse } from "./mocks/resources";
|
11
|
+
|
12
|
+
import { UserSession } from "@esri/arcgis-rest-auth";
|
13
|
+
import { TOMORROW } from "@esri/arcgis-rest-auth/test/utils";
|
14
|
+
|
15
|
+
describe("get", () => {
|
16
|
+
afterEach(fetchMock.restore);
|
17
|
+
|
18
|
+
it("should return an item by id", done => {
|
19
|
+
fetchMock.once("*", ItemResponse);
|
20
|
+
|
21
|
+
getItem("3ef")
|
22
|
+
.then(response => {
|
23
|
+
expect(fetchMock.called()).toEqual(true);
|
24
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
25
|
+
expect(url).toEqual(
|
26
|
+
"https://www.arcgis.com/sharing/rest/content/items/3ef?f=json"
|
27
|
+
);
|
28
|
+
expect(options.method).toBe("GET");
|
29
|
+
done();
|
30
|
+
})
|
31
|
+
.catch(e => {
|
32
|
+
fail(e);
|
33
|
+
});
|
34
|
+
});
|
35
|
+
|
36
|
+
it("should return an item data by id", done => {
|
37
|
+
fetchMock.once("*", ItemDataResponse);
|
38
|
+
|
39
|
+
getItemData("3ef")
|
40
|
+
.then(response => {
|
41
|
+
expect(fetchMock.called()).toEqual(true);
|
42
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
43
|
+
expect(url).toEqual(
|
44
|
+
"https://www.arcgis.com/sharing/rest/content/items/3ef/data?f=json"
|
45
|
+
);
|
46
|
+
expect(options.method).toBe("GET");
|
47
|
+
done();
|
48
|
+
})
|
49
|
+
.catch(e => {
|
50
|
+
fail(e);
|
51
|
+
});
|
52
|
+
});
|
53
|
+
|
54
|
+
it("should return binary item data by id", done => {
|
55
|
+
// Blob() is only available in the browser
|
56
|
+
if (typeof window !== "undefined") {
|
57
|
+
fetchMock.once("*", {
|
58
|
+
sendAsJson: false,
|
59
|
+
headers: { "Content-Type": "application/zip" },
|
60
|
+
body: new Blob()
|
61
|
+
});
|
62
|
+
|
63
|
+
getItemData("3ef", { file: true })
|
64
|
+
.then(response => {
|
65
|
+
expect(fetchMock.called()).toEqual(true);
|
66
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
67
|
+
expect(url).toEqual(
|
68
|
+
"https://www.arcgis.com/sharing/rest/content/items/3ef/data"
|
69
|
+
);
|
70
|
+
expect(options.method).toBe("GET");
|
71
|
+
expect(response instanceof Blob).toBeTruthy();
|
72
|
+
done();
|
73
|
+
})
|
74
|
+
.catch(e => {
|
75
|
+
fail(e);
|
76
|
+
});
|
77
|
+
} else {
|
78
|
+
done();
|
79
|
+
}
|
80
|
+
});
|
81
|
+
|
82
|
+
describe("Authenticated methods", () => {
|
83
|
+
// setup a UserSession to use in all these tests
|
84
|
+
const MOCK_USER_SESSION = new UserSession({
|
85
|
+
clientId: "clientId",
|
86
|
+
redirectUri: "https://example-app.com/redirect-uri",
|
87
|
+
token: "fake-token",
|
88
|
+
tokenExpires: TOMORROW,
|
89
|
+
refreshToken: "refreshToken",
|
90
|
+
refreshTokenExpires: TOMORROW,
|
91
|
+
refreshTokenTTL: 1440,
|
92
|
+
username: "casey",
|
93
|
+
password: "123456",
|
94
|
+
portal: "https://myorg.maps.arcgis.com/sharing/rest"
|
95
|
+
});
|
96
|
+
|
97
|
+
const MOCK_USER_REQOPTS = {
|
98
|
+
authentication: MOCK_USER_SESSION
|
99
|
+
};
|
100
|
+
|
101
|
+
it("should return an item by id using a token", done => {
|
102
|
+
fetchMock.once("*", ItemResponse);
|
103
|
+
|
104
|
+
getItem("3ef", MOCK_USER_REQOPTS)
|
105
|
+
.then(response => {
|
106
|
+
expect(fetchMock.called()).toEqual(true);
|
107
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
108
|
+
expect(url).toEqual(
|
109
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/items/3ef?f=json&token=fake-token"
|
110
|
+
);
|
111
|
+
expect(options.method).toBe("GET");
|
112
|
+
done();
|
113
|
+
})
|
114
|
+
.catch(e => {
|
115
|
+
fail(e);
|
116
|
+
});
|
117
|
+
});
|
118
|
+
|
119
|
+
it("should return an item data by id using a token", done => {
|
120
|
+
fetchMock.once("*", ItemDataResponse);
|
121
|
+
|
122
|
+
getItemData("3ef", MOCK_USER_REQOPTS)
|
123
|
+
.then(response => {
|
124
|
+
expect(fetchMock.called()).toEqual(true);
|
125
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
126
|
+
expect(url).toEqual(
|
127
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/items/3ef/data?f=json&token=fake-token"
|
128
|
+
);
|
129
|
+
expect(options.method).toBe("GET");
|
130
|
+
done();
|
131
|
+
})
|
132
|
+
.catch(e => {
|
133
|
+
fail(e);
|
134
|
+
});
|
135
|
+
});
|
136
|
+
|
137
|
+
it("get item resources", done => {
|
138
|
+
fetchMock.once("*", GetItemResourcesResponse);
|
139
|
+
getItemResources({
|
140
|
+
id: "3ef",
|
141
|
+
...MOCK_USER_REQOPTS
|
142
|
+
})
|
143
|
+
.then(response => {
|
144
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
145
|
+
expect(url).toEqual(
|
146
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/items/3ef/resources"
|
147
|
+
);
|
148
|
+
expect(options.method).toBe("POST");
|
149
|
+
expect(options.body).toContain("f=json");
|
150
|
+
done();
|
151
|
+
})
|
152
|
+
.catch(e => {
|
153
|
+
fail(e);
|
154
|
+
});
|
155
|
+
});
|
156
|
+
|
157
|
+
it("get item resources with extra parameters", done => {
|
158
|
+
fetchMock.once("*", GetItemResourcesResponse);
|
159
|
+
getItemResources({
|
160
|
+
id: "3ef",
|
161
|
+
...MOCK_USER_REQOPTS,
|
162
|
+
params: {
|
163
|
+
resourcesPrefix: "foolder"
|
164
|
+
}
|
165
|
+
})
|
166
|
+
.then(response => {
|
167
|
+
const [url, options]: [string, RequestInit] = fetchMock.lastCall("*");
|
168
|
+
expect(url).toEqual(
|
169
|
+
"https://myorg.maps.arcgis.com/sharing/rest/content/items/3ef/resources"
|
170
|
+
);
|
171
|
+
expect(options.method).toBe("POST");
|
172
|
+
expect(options.body).toContain("f=json");
|
173
|
+
expect(options.body).toContain("resourcesPrefix=foolder");
|
174
|
+
done();
|
175
|
+
})
|
176
|
+
.catch(e => {
|
177
|
+
fail(e);
|
178
|
+
});
|
179
|
+
});
|
180
|
+
}); // auth requests
|
181
|
+
});
|
Binary file
|
@@ -0,0 +1,33 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { IItem } from "@esri/arcgis-rest-common-types";
|
5
|
+
|
6
|
+
export const ItemSuccessResponse: any = {
|
7
|
+
success: true,
|
8
|
+
id: "3efakeitemid0000"
|
9
|
+
};
|
10
|
+
|
11
|
+
export const ItemResponse: IItem = {
|
12
|
+
id: "4bc",
|
13
|
+
owner: "jeffvader",
|
14
|
+
title: "DS Plans",
|
15
|
+
description: "The plans",
|
16
|
+
snippet: "Yeah these are the ones",
|
17
|
+
tags: ["plans", "star dust"],
|
18
|
+
type: "Web Map",
|
19
|
+
typeKeywords: ["Javascript", "hubSiteApplication"],
|
20
|
+
properties: {
|
21
|
+
parentId: "3eb"
|
22
|
+
},
|
23
|
+
created: 123,
|
24
|
+
modified: 456,
|
25
|
+
protected: false
|
26
|
+
};
|
27
|
+
|
28
|
+
export const ItemDataResponse: any = {
|
29
|
+
source: "3ef",
|
30
|
+
values: {
|
31
|
+
key: "value"
|
32
|
+
}
|
33
|
+
};
|
@@ -0,0 +1,31 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
export const GetItemResourcesResponse: any = {
|
5
|
+
total: 3,
|
6
|
+
start: 1,
|
7
|
+
num: 3,
|
8
|
+
nextStart: -1,
|
9
|
+
resources: [
|
10
|
+
{
|
11
|
+
resource: "image/banner.jpg"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
resource: "image/logo.jpg"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
resource: "text/desc.txt"
|
18
|
+
}
|
19
|
+
]
|
20
|
+
};
|
21
|
+
|
22
|
+
export const RemoveItemResourceResponse: any = {
|
23
|
+
success: true
|
24
|
+
};
|
25
|
+
|
26
|
+
export const UpdateItemResourceResponse: any = {
|
27
|
+
success: true,
|
28
|
+
itemId: "0c66beb52dff4994be67937cdadbdbf1",
|
29
|
+
owner: "jsmith",
|
30
|
+
folder: null
|
31
|
+
};
|
@@ -0,0 +1,63 @@
|
|
1
|
+
/* Copyright (c) 2018 Environmental Systems Research Institute, Inc.
|
2
|
+
* Apache-2.0 */
|
3
|
+
|
4
|
+
import { ISearchResult } from "../../src/search";
|
5
|
+
|
6
|
+
export const SearchResponse: ISearchResult = {
|
7
|
+
query: "",
|
8
|
+
total: 10795,
|
9
|
+
start: 1,
|
10
|
+
num: 1,
|
11
|
+
nextStart: 2,
|
12
|
+
results: [
|
13
|
+
{
|
14
|
+
id: "a5b",
|
15
|
+
owner: "dcadminqa",
|
16
|
+
created: 1496748288000,
|
17
|
+
modified: 1508856526000,
|
18
|
+
name: "survey123_7d7a9fabcb0c44bcaf1d6473cd088a07",
|
19
|
+
title: " Drug Activity Reporter",
|
20
|
+
type: "Feature Service",
|
21
|
+
typeKeywords: [
|
22
|
+
"ArcGIS Server",
|
23
|
+
"Data",
|
24
|
+
"Feature Access",
|
25
|
+
"Feature Service",
|
26
|
+
"OwnerView",
|
27
|
+
"Service",
|
28
|
+
"Survey123",
|
29
|
+
"Survey123 Hub",
|
30
|
+
"Hosted Service"
|
31
|
+
],
|
32
|
+
description: "Some Description",
|
33
|
+
tags: [],
|
34
|
+
snippet: "Some Snippet",
|
35
|
+
thumbnail: "thumbnail/ago_downloaded.png",
|
36
|
+
documentation: "WAT docs",
|
37
|
+
extent: [[-180, -90], [180, 90]],
|
38
|
+
categories: [],
|
39
|
+
spatialReference: null,
|
40
|
+
accessInformation: null,
|
41
|
+
licenseInfo: null,
|
42
|
+
culture: null,
|
43
|
+
properties: {},
|
44
|
+
url:
|
45
|
+
"https://servicesqa.arcgis.com/97KLIFOSt5CxbiRI/arcgis/rest/services/survey123_7d7a9fabcb0c44bcaf1d6473cd088a07/FeatureServer",
|
46
|
+
proxyFilter: null,
|
47
|
+
access: "shared",
|
48
|
+
size: -1,
|
49
|
+
appCategories: [],
|
50
|
+
industries: [],
|
51
|
+
languages: [],
|
52
|
+
largeThumbnail: null,
|
53
|
+
banner: null,
|
54
|
+
screenshots: [],
|
55
|
+
listed: false,
|
56
|
+
numComments: 0,
|
57
|
+
numRatings: 0,
|
58
|
+
avgRating: 0,
|
59
|
+
numViews: 4,
|
60
|
+
protected: false
|
61
|
+
}
|
62
|
+
]
|
63
|
+
};
|