twilio 4.7.1 → 4.7.2

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.
Files changed (36) hide show
  1. package/lib/rest/content/V1.d.ts +5 -0
  2. package/lib/rest/content/V1.js +7 -0
  3. package/lib/rest/content/v1/legacyContent.d.ts +202 -0
  4. package/lib/rest/content/v1/legacyContent.js +138 -0
  5. package/lib/rest/flexApi/V1.d.ts +15 -0
  6. package/lib/rest/flexApi/V1.js +22 -0
  7. package/lib/rest/flexApi/v1/insightsAssessmentsComment.d.ts +255 -0
  8. package/lib/rest/flexApi/v1/insightsAssessmentsComment.js +198 -0
  9. package/lib/rest/flexApi/v1/insightsQuestionnaires.d.ts +357 -0
  10. package/lib/rest/flexApi/v1/insightsQuestionnaires.js +280 -0
  11. package/lib/rest/flexApi/v1/insightsQuestionnairesCategory.d.ts +111 -0
  12. package/lib/rest/flexApi/v1/insightsQuestionnairesCategory.js +68 -1
  13. package/lib/rest/flexApi/v1/insightsQuestionnairesQuestion.d.ts +129 -6
  14. package/lib/rest/flexApi/v1/insightsQuestionnairesQuestion.js +78 -13
  15. package/lib/rest/flexApi/v1/insightsSegments.d.ts +224 -0
  16. package/lib/rest/flexApi/v1/insightsSegments.js +154 -0
  17. package/lib/rest/flexApi/v1/insightsSession.d.ts +2 -2
  18. package/lib/rest/flexApi/v1/insightsSession.js +2 -2
  19. package/lib/rest/flexApi/v1/insightsUserRoles.d.ts +2 -2
  20. package/lib/rest/flexApi/v1/insightsUserRoles.js +2 -2
  21. package/lib/rest/lookups/v2/phoneNumber.d.ts +12 -0
  22. package/lib/rest/lookups/v2/phoneNumber.js +4 -0
  23. package/lib/rest/microvisor/V1.d.ts +10 -0
  24. package/lib/rest/microvisor/V1.js +14 -0
  25. package/lib/rest/microvisor/v1/accountConfig.d.ts +237 -0
  26. package/lib/rest/microvisor/v1/accountConfig.js +221 -0
  27. package/lib/rest/microvisor/v1/accountSecret.d.ts +231 -0
  28. package/lib/rest/microvisor/v1/accountSecret.js +219 -0
  29. package/lib/rest/microvisor/v1/device/deviceConfig.d.ts +245 -0
  30. package/lib/rest/microvisor/v1/device/deviceConfig.js +229 -0
  31. package/lib/rest/microvisor/v1/device/deviceSecret.d.ts +239 -0
  32. package/lib/rest/microvisor/v1/device/deviceSecret.js +227 -0
  33. package/lib/rest/microvisor/v1/device.d.ts +16 -0
  34. package/lib/rest/microvisor/v1/device.js +26 -0
  35. package/lib/rest/supersim/v1/smsCommand.d.ts +3 -3
  36. package/package.json +1 -1
@@ -0,0 +1,224 @@
1
+ /// <reference types="node" />
2
+ import { inspect, InspectOptions } from "util";
3
+ import V1 from "../V1";
4
+ /**
5
+ * Options to pass to fetch a InsightsSegmentsInstance
6
+ */
7
+ export interface InsightsSegmentsContextFetchOptions {
8
+ /** The Token HTTP request header */
9
+ token?: string;
10
+ }
11
+ export interface InsightsSegmentsContext {
12
+ /**
13
+ * Fetch a InsightsSegmentsInstance
14
+ *
15
+ * @param callback - Callback to handle processed record
16
+ *
17
+ * @returns Resolves to processed InsightsSegmentsInstance
18
+ */
19
+ fetch(callback?: (error: Error | null, item?: InsightsSegmentsInstance) => any): Promise<InsightsSegmentsInstance>;
20
+ /**
21
+ * Fetch a InsightsSegmentsInstance
22
+ *
23
+ * @param params - Parameter for request
24
+ * @param callback - Callback to handle processed record
25
+ *
26
+ * @returns Resolves to processed InsightsSegmentsInstance
27
+ */
28
+ fetch(params: InsightsSegmentsContextFetchOptions, callback?: (error: Error | null, item?: InsightsSegmentsInstance) => any): Promise<InsightsSegmentsInstance>;
29
+ /**
30
+ * Provide a user-friendly representation
31
+ */
32
+ toJSON(): any;
33
+ [inspect.custom](_depth: any, options: InspectOptions): any;
34
+ }
35
+ export interface InsightsSegmentsContextSolution {
36
+ segmentId: string;
37
+ }
38
+ export declare class InsightsSegmentsContextImpl implements InsightsSegmentsContext {
39
+ protected _version: V1;
40
+ protected _solution: InsightsSegmentsContextSolution;
41
+ protected _uri: string;
42
+ constructor(_version: V1, segmentId: string);
43
+ fetch(params?: InsightsSegmentsContextFetchOptions | ((error: Error | null, item?: InsightsSegmentsInstance) => any), callback?: (error: Error | null, item?: InsightsSegmentsInstance) => any): Promise<InsightsSegmentsInstance>;
44
+ /**
45
+ * Provide a user-friendly representation
46
+ *
47
+ * @returns Object
48
+ */
49
+ toJSON(): InsightsSegmentsContextSolution;
50
+ [inspect.custom](_depth: any, options: InspectOptions): string;
51
+ }
52
+ interface InsightsSegmentsResource {
53
+ segment_id: string;
54
+ external_id: string;
55
+ queue: string;
56
+ external_contact: string;
57
+ external_segment_link_id: string;
58
+ date: string;
59
+ account_id: string;
60
+ external_segment_link: string;
61
+ agent_id: string;
62
+ agent_phone: string;
63
+ agent_name: string;
64
+ agent_team_name: string;
65
+ agent_team_name_in_hierarchy: string;
66
+ agent_link: string;
67
+ customer_phone: string;
68
+ customer_name: string;
69
+ customer_link: string;
70
+ segment_recording_offset: string;
71
+ media: string;
72
+ assessment_type: any;
73
+ assessment_percentage: any;
74
+ url: string;
75
+ }
76
+ export declare class InsightsSegmentsInstance {
77
+ protected _version: V1;
78
+ protected _solution: InsightsSegmentsContextSolution;
79
+ protected _context?: InsightsSegmentsContext;
80
+ constructor(_version: V1, payload: InsightsSegmentsResource, segmentId?: string);
81
+ /**
82
+ * To unique id of the segment
83
+ */
84
+ segmentId: string;
85
+ /**
86
+ * The unique id for the conversation.
87
+ */
88
+ externalId: string;
89
+ queue: string;
90
+ externalContact: string;
91
+ /**
92
+ * The uuid for the external_segment_link.
93
+ */
94
+ externalSegmentLinkId: string;
95
+ /**
96
+ * The date of the conversation.
97
+ */
98
+ date: string;
99
+ /**
100
+ * The unique id for the account.
101
+ */
102
+ accountId: string;
103
+ /**
104
+ * The hyperlink to recording of the task event.
105
+ */
106
+ externalSegmentLink: string;
107
+ /**
108
+ * The unique id for the agent.
109
+ */
110
+ agentId: string;
111
+ /**
112
+ * The phone number of the agent.
113
+ */
114
+ agentPhone: string;
115
+ /**
116
+ * The name of the agent.
117
+ */
118
+ agentName: string;
119
+ /**
120
+ * The team name to which agent belongs.
121
+ */
122
+ agentTeamName: string;
123
+ /**
124
+ * he team name to which agent belongs.
125
+ */
126
+ agentTeamNameInHierarchy: string;
127
+ /**
128
+ * The link to the agent conversation.
129
+ */
130
+ agentLink: string;
131
+ /**
132
+ * The phone number of the customer.
133
+ */
134
+ customerPhone: string;
135
+ /**
136
+ * The name of the customer.
137
+ */
138
+ customerName: string;
139
+ /**
140
+ * The link to the customer conversation.
141
+ */
142
+ customerLink: string;
143
+ /**
144
+ * The offset value for the recording.
145
+ */
146
+ segmentRecordingOffset: string;
147
+ /**
148
+ * The link for the conversation.
149
+ */
150
+ media: string;
151
+ /**
152
+ * The type of the assessment.
153
+ */
154
+ assessmentType: any;
155
+ /**
156
+ * The percentage scored on the Assessments.
157
+ */
158
+ assessmentPercentage: any;
159
+ url: string;
160
+ private get _proxy();
161
+ /**
162
+ * Fetch a InsightsSegmentsInstance
163
+ *
164
+ * @param callback - Callback to handle processed record
165
+ *
166
+ * @returns Resolves to processed InsightsSegmentsInstance
167
+ */
168
+ fetch(callback?: (error: Error | null, item?: InsightsSegmentsInstance) => any): Promise<InsightsSegmentsInstance>;
169
+ /**
170
+ * Fetch a InsightsSegmentsInstance
171
+ *
172
+ * @param params - Parameter for request
173
+ * @param callback - Callback to handle processed record
174
+ *
175
+ * @returns Resolves to processed InsightsSegmentsInstance
176
+ */
177
+ fetch(params: InsightsSegmentsContextFetchOptions, callback?: (error: Error | null, item?: InsightsSegmentsInstance) => any): Promise<InsightsSegmentsInstance>;
178
+ /**
179
+ * Provide a user-friendly representation
180
+ *
181
+ * @returns Object
182
+ */
183
+ toJSON(): {
184
+ segmentId: string;
185
+ externalId: string;
186
+ queue: string;
187
+ externalContact: string;
188
+ externalSegmentLinkId: string;
189
+ date: string;
190
+ accountId: string;
191
+ externalSegmentLink: string;
192
+ agentId: string;
193
+ agentPhone: string;
194
+ agentName: string;
195
+ agentTeamName: string;
196
+ agentTeamNameInHierarchy: string;
197
+ agentLink: string;
198
+ customerPhone: string;
199
+ customerName: string;
200
+ customerLink: string;
201
+ segmentRecordingOffset: string;
202
+ media: string;
203
+ assessmentType: any;
204
+ assessmentPercentage: any;
205
+ url: string;
206
+ };
207
+ [inspect.custom](_depth: any, options: InspectOptions): string;
208
+ }
209
+ export interface InsightsSegmentsSolution {
210
+ }
211
+ export interface InsightsSegmentsListInstance {
212
+ _version: V1;
213
+ _solution: InsightsSegmentsSolution;
214
+ _uri: string;
215
+ (segmentId: string): InsightsSegmentsContext;
216
+ get(segmentId: string): InsightsSegmentsContext;
217
+ /**
218
+ * Provide a user-friendly representation
219
+ */
220
+ toJSON(): any;
221
+ [inspect.custom](_depth: any, options: InspectOptions): any;
222
+ }
223
+ export declare function InsightsSegmentsListInstance(version: V1): InsightsSegmentsListInstance;
224
+ export {};
@@ -0,0 +1,154 @@
1
+ "use strict";
2
+ /*
3
+ * This code was generated by
4
+ * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
5
+ * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
6
+ * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
7
+ *
8
+ * Twilio - Flex
9
+ * This is the public Twilio REST API.
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator.
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.InsightsSegmentsListInstance = exports.InsightsSegmentsInstance = exports.InsightsSegmentsContextImpl = void 0;
17
+ const util_1 = require("util");
18
+ const deserialize = require("../../../base/deserialize");
19
+ const serialize = require("../../../base/serialize");
20
+ const utility_1 = require("../../../base/utility");
21
+ class InsightsSegmentsContextImpl {
22
+ constructor(_version, segmentId) {
23
+ this._version = _version;
24
+ if (!(0, utility_1.isValidPathParam)(segmentId)) {
25
+ throw new Error("Parameter 'segmentId' is not valid.");
26
+ }
27
+ this._solution = { segmentId };
28
+ this._uri = `/Insights/Segments/${segmentId}`;
29
+ }
30
+ fetch(params, callback) {
31
+ if (params instanceof Function) {
32
+ callback = params;
33
+ params = {};
34
+ }
35
+ else {
36
+ params = params || {};
37
+ }
38
+ let data = {};
39
+ const headers = {};
40
+ if (params["token"] !== undefined)
41
+ headers["Token"] = params["token"];
42
+ const instance = this;
43
+ let operationVersion = instance._version, operationPromise = operationVersion.fetch({
44
+ uri: instance._uri,
45
+ method: "get",
46
+ params: data,
47
+ headers,
48
+ });
49
+ operationPromise = operationPromise.then((payload) => new InsightsSegmentsInstance(operationVersion, payload, instance._solution.segmentId));
50
+ operationPromise = instance._version.setPromiseCallback(operationPromise, callback);
51
+ return operationPromise;
52
+ }
53
+ /**
54
+ * Provide a user-friendly representation
55
+ *
56
+ * @returns Object
57
+ */
58
+ toJSON() {
59
+ return this._solution;
60
+ }
61
+ [util_1.inspect.custom](_depth, options) {
62
+ return (0, util_1.inspect)(this.toJSON(), options);
63
+ }
64
+ }
65
+ exports.InsightsSegmentsContextImpl = InsightsSegmentsContextImpl;
66
+ class InsightsSegmentsInstance {
67
+ constructor(_version, payload, segmentId) {
68
+ this._version = _version;
69
+ this.segmentId = payload.segment_id;
70
+ this.externalId = payload.external_id;
71
+ this.queue = payload.queue;
72
+ this.externalContact = payload.external_contact;
73
+ this.externalSegmentLinkId = payload.external_segment_link_id;
74
+ this.date = payload.date;
75
+ this.accountId = payload.account_id;
76
+ this.externalSegmentLink = payload.external_segment_link;
77
+ this.agentId = payload.agent_id;
78
+ this.agentPhone = payload.agent_phone;
79
+ this.agentName = payload.agent_name;
80
+ this.agentTeamName = payload.agent_team_name;
81
+ this.agentTeamNameInHierarchy = payload.agent_team_name_in_hierarchy;
82
+ this.agentLink = payload.agent_link;
83
+ this.customerPhone = payload.customer_phone;
84
+ this.customerName = payload.customer_name;
85
+ this.customerLink = payload.customer_link;
86
+ this.segmentRecordingOffset = payload.segment_recording_offset;
87
+ this.media = payload.media;
88
+ this.assessmentType = payload.assessment_type;
89
+ this.assessmentPercentage = payload.assessment_percentage;
90
+ this.url = payload.url;
91
+ this._solution = { segmentId: segmentId || this.segmentId };
92
+ }
93
+ get _proxy() {
94
+ this._context =
95
+ this._context ||
96
+ new InsightsSegmentsContextImpl(this._version, this._solution.segmentId);
97
+ return this._context;
98
+ }
99
+ fetch(params, callback) {
100
+ return this._proxy.fetch(params, callback);
101
+ }
102
+ /**
103
+ * Provide a user-friendly representation
104
+ *
105
+ * @returns Object
106
+ */
107
+ toJSON() {
108
+ return {
109
+ segmentId: this.segmentId,
110
+ externalId: this.externalId,
111
+ queue: this.queue,
112
+ externalContact: this.externalContact,
113
+ externalSegmentLinkId: this.externalSegmentLinkId,
114
+ date: this.date,
115
+ accountId: this.accountId,
116
+ externalSegmentLink: this.externalSegmentLink,
117
+ agentId: this.agentId,
118
+ agentPhone: this.agentPhone,
119
+ agentName: this.agentName,
120
+ agentTeamName: this.agentTeamName,
121
+ agentTeamNameInHierarchy: this.agentTeamNameInHierarchy,
122
+ agentLink: this.agentLink,
123
+ customerPhone: this.customerPhone,
124
+ customerName: this.customerName,
125
+ customerLink: this.customerLink,
126
+ segmentRecordingOffset: this.segmentRecordingOffset,
127
+ media: this.media,
128
+ assessmentType: this.assessmentType,
129
+ assessmentPercentage: this.assessmentPercentage,
130
+ url: this.url,
131
+ };
132
+ }
133
+ [util_1.inspect.custom](_depth, options) {
134
+ return (0, util_1.inspect)(this.toJSON(), options);
135
+ }
136
+ }
137
+ exports.InsightsSegmentsInstance = InsightsSegmentsInstance;
138
+ function InsightsSegmentsListInstance(version) {
139
+ const instance = ((segmentId) => instance.get(segmentId));
140
+ instance.get = function get(segmentId) {
141
+ return new InsightsSegmentsContextImpl(version, segmentId);
142
+ };
143
+ instance._version = version;
144
+ instance._solution = {};
145
+ instance._uri = ``;
146
+ instance.toJSON = function toJSON() {
147
+ return instance._solution;
148
+ };
149
+ instance[util_1.inspect.custom] = function inspectImpl(_depth, options) {
150
+ return (0, util_1.inspect)(instance.toJSON(), options);
151
+ };
152
+ return instance;
153
+ }
154
+ exports.InsightsSegmentsListInstance = InsightsSegmentsListInstance;
@@ -5,8 +5,8 @@ import V1 from "../V1";
5
5
  * Options to pass to create a InsightsSessionInstance
6
6
  */
7
7
  export interface InsightsSessionContextCreateOptions {
8
- /** The Token HTTP request header */
9
- token?: string;
8
+ /** The Authorization HTTP request header */
9
+ authorization?: string;
10
10
  }
11
11
  export interface InsightsSessionContext {
12
12
  /**
@@ -33,8 +33,8 @@ class InsightsSessionContextImpl {
33
33
  }
34
34
  let data = {};
35
35
  const headers = {};
36
- if (params["token"] !== undefined)
37
- headers["Token"] = params["token"];
36
+ if (params["authorization"] !== undefined)
37
+ headers["Authorization"] = params["authorization"];
38
38
  const instance = this;
39
39
  let operationVersion = instance._version, operationPromise = operationVersion.create({
40
40
  uri: instance._uri,
@@ -5,8 +5,8 @@ import V1 from "../V1";
5
5
  * Options to pass to fetch a InsightsUserRolesInstance
6
6
  */
7
7
  export interface InsightsUserRolesContextFetchOptions {
8
- /** The Token HTTP request header */
9
- token?: string;
8
+ /** The Authorization HTTP request header */
9
+ authorization?: string;
10
10
  }
11
11
  export interface InsightsUserRolesContext {
12
12
  /**
@@ -33,8 +33,8 @@ class InsightsUserRolesContextImpl {
33
33
  }
34
34
  let data = {};
35
35
  const headers = {};
36
- if (params["token"] !== undefined)
37
- headers["Token"] = params["token"];
36
+ if (params["authorization"] !== undefined)
37
+ headers["Authorization"] = params["authorization"];
38
38
  const instance = this;
39
39
  let operationVersion = instance._version, operationPromise = operationVersion.fetch({
40
40
  uri: instance._uri,
@@ -85,6 +85,8 @@ interface PhoneNumberResource {
85
85
  live_activity: any;
86
86
  line_type_intelligence: any;
87
87
  identity_match: any;
88
+ sms_pumping_risk: any;
89
+ disposable_phone_number_risk: any;
88
90
  url: string;
89
91
  }
90
92
  export declare class PhoneNumberInstance {
@@ -140,6 +142,14 @@ export declare class PhoneNumberInstance {
140
142
  * An object that contains identity match information. The result of comparing user-provided information including name, address, date of birth, national ID, against authoritative phone-based data sources
141
143
  */
142
144
  identityMatch: any;
145
+ /**
146
+ * An object that contains information on if a phone number has been currently or previously blocked by Verify Fraud Guard for receiving malicious SMS pumping traffic as well as other signals associated with risky carriers and low conversion rates.
147
+ */
148
+ smsPumpingRisk: any;
149
+ /**
150
+ * An object that contains information on if a mobile phone number could be a disposable or burner number.
151
+ */
152
+ disposablePhoneNumberRisk: any;
143
153
  /**
144
154
  * The absolute URL of the resource.
145
155
  */
@@ -180,6 +190,8 @@ export declare class PhoneNumberInstance {
180
190
  liveActivity: any;
181
191
  lineTypeIntelligence: any;
182
192
  identityMatch: any;
193
+ smsPumpingRisk: any;
194
+ disposablePhoneNumberRisk: any;
183
195
  url: string;
184
196
  };
185
197
  [inspect.custom](_depth: any, options: InspectOptions): string;
@@ -100,6 +100,8 @@ class PhoneNumberInstance {
100
100
  this.liveActivity = payload.live_activity;
101
101
  this.lineTypeIntelligence = payload.line_type_intelligence;
102
102
  this.identityMatch = payload.identity_match;
103
+ this.smsPumpingRisk = payload.sms_pumping_risk;
104
+ this.disposablePhoneNumberRisk = payload.disposable_phone_number_risk;
103
105
  this.url = payload.url;
104
106
  this._solution = { phoneNumber: phoneNumber || this.phoneNumber };
105
107
  }
@@ -131,6 +133,8 @@ class PhoneNumberInstance {
131
133
  liveActivity: this.liveActivity,
132
134
  lineTypeIntelligence: this.lineTypeIntelligence,
133
135
  identityMatch: this.identityMatch,
136
+ smsPumpingRisk: this.smsPumpingRisk,
137
+ disposablePhoneNumberRisk: this.disposablePhoneNumberRisk,
134
138
  url: this.url,
135
139
  };
136
140
  }
@@ -1,5 +1,7 @@
1
1
  import MicrovisorBase from "../MicrovisorBase";
2
2
  import Version from "../../base/Version";
3
+ import { AccountConfigListInstance } from "./v1/accountConfig";
4
+ import { AccountSecretListInstance } from "./v1/accountSecret";
3
5
  import { AppListInstance } from "./v1/app";
4
6
  import { DeviceListInstance } from "./v1/device";
5
7
  export default class V1 extends Version {
@@ -9,10 +11,18 @@ export default class V1 extends Version {
9
11
  * @param domain - The Twilio (Twilio.Microvisor) domain
10
12
  */
11
13
  constructor(domain: MicrovisorBase);
14
+ /** accountConfigs - { Twilio.Microvisor.V1.AccountConfigListInstance } resource */
15
+ protected _accountConfigs?: AccountConfigListInstance;
16
+ /** accountSecrets - { Twilio.Microvisor.V1.AccountSecretListInstance } resource */
17
+ protected _accountSecrets?: AccountSecretListInstance;
12
18
  /** apps - { Twilio.Microvisor.V1.AppListInstance } resource */
13
19
  protected _apps?: AppListInstance;
14
20
  /** devices - { Twilio.Microvisor.V1.DeviceListInstance } resource */
15
21
  protected _devices?: DeviceListInstance;
22
+ /** Getter for accountConfigs resource */
23
+ get accountConfigs(): AccountConfigListInstance;
24
+ /** Getter for accountSecrets resource */
25
+ get accountSecrets(): AccountSecretListInstance;
16
26
  /** Getter for apps resource */
17
27
  get apps(): AppListInstance;
18
28
  /** Getter for devices resource */
@@ -17,6 +17,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
17
17
  };
18
18
  Object.defineProperty(exports, "__esModule", { value: true });
19
19
  const Version_1 = __importDefault(require("../../base/Version"));
20
+ const accountConfig_1 = require("./v1/accountConfig");
21
+ const accountSecret_1 = require("./v1/accountSecret");
20
22
  const app_1 = require("./v1/app");
21
23
  const device_1 = require("./v1/device");
22
24
  class V1 extends Version_1.default {
@@ -28,6 +30,18 @@ class V1 extends Version_1.default {
28
30
  constructor(domain) {
29
31
  super(domain, "v1");
30
32
  }
33
+ /** Getter for accountConfigs resource */
34
+ get accountConfigs() {
35
+ this._accountConfigs =
36
+ this._accountConfigs || (0, accountConfig_1.AccountConfigListInstance)(this);
37
+ return this._accountConfigs;
38
+ }
39
+ /** Getter for accountSecrets resource */
40
+ get accountSecrets() {
41
+ this._accountSecrets =
42
+ this._accountSecrets || (0, accountSecret_1.AccountSecretListInstance)(this);
43
+ return this._accountSecrets;
44
+ }
31
45
  /** Getter for apps resource */
32
46
  get apps() {
33
47
  this._apps = this._apps || (0, app_1.AppListInstance)(this);