@looker/sdk 22.20.1 → 23.2.0

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 (64) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/README.md +1 -1
  3. package/lib/3.1/funcs.js +4 -1075
  4. package/lib/3.1/funcs.js.map +1 -1
  5. package/lib/3.1/methods.js +3 -720
  6. package/lib/3.1/methods.js.map +1 -1
  7. package/lib/3.1/methodsInterface.js +1 -1
  8. package/lib/3.1/methodsInterface.js.map +1 -1
  9. package/lib/3.1/models.d.ts +33 -0
  10. package/lib/3.1/models.js +0 -33
  11. package/lib/3.1/models.js.map +1 -1
  12. package/lib/3.1/streams.js +3 -720
  13. package/lib/3.1/streams.js.map +1 -1
  14. package/lib/4.0/funcs.d.ts +2 -1
  15. package/lib/4.0/funcs.js +826 -2102
  16. package/lib/4.0/funcs.js.map +1 -1
  17. package/lib/4.0/methods.d.ts +2 -1
  18. package/lib/4.0/methods.js +553 -1404
  19. package/lib/4.0/methods.js.map +1 -1
  20. package/lib/4.0/methodsInterface.d.ts +2 -1
  21. package/lib/4.0/methodsInterface.js +1 -1
  22. package/lib/4.0/methodsInterface.js.map +1 -1
  23. package/lib/4.0/models.d.ts +95 -0
  24. package/lib/4.0/models.js +0 -43
  25. package/lib/4.0/models.js.map +1 -1
  26. package/lib/4.0/streams.d.ts +2 -1
  27. package/lib/4.0/streams.js +553 -1404
  28. package/lib/4.0/streams.js.map +1 -1
  29. package/lib/browserSdk.js +0 -9
  30. package/lib/browserSdk.js.map +1 -1
  31. package/lib/constants.d.ts +1 -1
  32. package/lib/constants.js +2 -2
  33. package/lib/constants.js.map +1 -1
  34. package/lib/esm/3.1/funcs.js +862 -854
  35. package/lib/esm/3.1/funcs.js.map +1 -1
  36. package/lib/esm/3.1/methods.js +152 -858
  37. package/lib/esm/3.1/methods.js.map +1 -1
  38. package/lib/esm/3.1/methodsInterface.js.map +1 -1
  39. package/lib/esm/3.1/models.js +57 -67
  40. package/lib/esm/3.1/models.js.map +1 -1
  41. package/lib/esm/3.1/streams.js +152 -858
  42. package/lib/esm/3.1/streams.js.map +1 -1
  43. package/lib/esm/4.0/funcs.js +1993 -1967
  44. package/lib/esm/4.0/funcs.js.map +1 -1
  45. package/lib/esm/4.0/methods.js +864 -1704
  46. package/lib/esm/4.0/methods.js.map +1 -1
  47. package/lib/esm/4.0/methodsInterface.js.map +1 -1
  48. package/lib/esm/4.0/models.js +72 -87
  49. package/lib/esm/4.0/models.js.map +1 -1
  50. package/lib/esm/4.0/streams.js +864 -1704
  51. package/lib/esm/4.0/streams.js.map +1 -1
  52. package/lib/esm/browserSdk.js +20 -14
  53. package/lib/esm/browserSdk.js.map +1 -1
  54. package/lib/esm/constants.js +10 -2
  55. package/lib/esm/constants.js.map +1 -1
  56. package/lib/esm/extensionSdk.js +12 -6
  57. package/lib/esm/extensionSdk.js.map +1 -1
  58. package/lib/esm/index.js +141 -17
  59. package/lib/esm/index.js.map +1 -1
  60. package/lib/extensionSdk.js +0 -4
  61. package/lib/extensionSdk.js.map +1 -1
  62. package/lib/index.js +20 -38
  63. package/lib/index.js.map +1 -1
  64. package/package.json +3 -3
@@ -9,6 +9,10 @@ export interface IAlert {
9
9
  applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
10
10
  comparison_type: ComparisonType;
11
11
  cron: string;
12
+ custom_url_base?: string | null;
13
+ custom_url_params?: string | null;
14
+ custom_url_label?: string | null;
15
+ show_custom_url?: boolean;
12
16
  custom_title?: string | null;
13
17
  dashboard_element_id?: string | null;
14
18
  description?: string | null;
@@ -262,6 +266,17 @@ export interface IContentMetaGroupUser {
262
266
  group_id?: string | null;
263
267
  user_id?: string | null;
264
268
  }
269
+ export interface IContentSearch {
270
+ can?: IDictionary<boolean>;
271
+ content_id?: string | null;
272
+ type?: string | null;
273
+ title?: string | null;
274
+ description?: string | null;
275
+ folder_id?: string | null;
276
+ folder_name?: string | null;
277
+ view_count?: number | null;
278
+ preferred_viewer?: string | null;
279
+ }
265
280
  export interface IContentValidation {
266
281
  content_with_errors?: IContentValidatorError[] | null;
267
282
  computation_time?: number | null;
@@ -276,6 +291,10 @@ export interface IContentValidationAlert {
276
291
  id?: string;
277
292
  lookml_dashboard_id?: string | null;
278
293
  lookml_link_id?: string | null;
294
+ custom_url_base?: string | null;
295
+ custom_url_params?: string | null;
296
+ custom_url_label?: string | null;
297
+ show_custom_url?: boolean;
279
298
  custom_title?: string | null;
280
299
  }
281
300
  export interface IContentValidationDashboard {
@@ -301,6 +320,7 @@ export interface IContentValidationDashboardElement {
301
320
  title_text?: string | null;
302
321
  type?: string | null;
303
322
  rich_content_json?: string | null;
323
+ extension_id?: string | null;
304
324
  }
305
325
  export interface IContentValidationDashboardFilter {
306
326
  id?: string;
@@ -458,9 +478,11 @@ export interface ICredentialsEmail {
458
478
  created_at?: string | null;
459
479
  email?: string | null;
460
480
  forced_password_reset_at_next_login?: boolean;
481
+ user_id?: string | null;
461
482
  is_disabled?: boolean;
462
483
  logged_in_at?: string | null;
463
484
  password_reset_url?: string | null;
485
+ account_setup_url?: string | null;
464
486
  type?: string | null;
465
487
  url?: string | null;
466
488
  user_url?: string | null;
@@ -470,9 +492,11 @@ export interface ICredentialsEmailSearch {
470
492
  created_at?: string | null;
471
493
  email?: string | null;
472
494
  forced_password_reset_at_next_login?: boolean;
495
+ user_id?: string | null;
473
496
  is_disabled?: boolean;
474
497
  logged_in_at?: string | null;
475
498
  password_reset_url?: string | null;
499
+ account_setup_url?: string | null;
476
500
  type?: string | null;
477
501
  url?: string | null;
478
502
  user_url?: string | null;
@@ -803,7 +827,9 @@ export interface IDBConnection {
803
827
  after_connect_statements?: string | null;
804
828
  pdt_context_override?: IDBConnectionOverride;
805
829
  managed?: boolean;
830
+ custom_local_port?: number | null;
806
831
  tunnel_id?: string | null;
832
+ uses_tns?: boolean | null;
807
833
  pdt_concurrency?: number | null;
808
834
  disable_context_comment?: boolean | null;
809
835
  oauth_application_id?: string | null;
@@ -890,14 +916,25 @@ export interface IDialectInfo {
890
916
  }
891
917
  export interface IDialectInfoOptions {
892
918
  additional_params?: boolean;
919
+ after_connect_statements?: boolean;
920
+ analytical_view_dataset?: boolean;
893
921
  auth?: boolean;
922
+ cost_estimate?: boolean;
923
+ disable_context_comment?: boolean;
894
924
  host?: boolean;
925
+ instance_name?: boolean;
926
+ max_billing_gigabytes?: boolean;
895
927
  oauth_credentials?: boolean;
928
+ pdts_for_oauth?: boolean;
929
+ port?: boolean;
896
930
  project_name?: boolean;
897
931
  schema?: boolean;
932
+ service_account_credentials?: boolean;
898
933
  ssl?: boolean;
899
934
  timezone?: boolean;
900
935
  tmp_table?: boolean;
936
+ tns?: boolean;
937
+ username?: boolean;
901
938
  username_required?: boolean;
902
939
  }
903
940
  export interface IDigestEmails {
@@ -2373,6 +2410,15 @@ export interface IRequestSearchBoards {
2373
2410
  filter_or?: boolean | null;
2374
2411
  permission?: string | null;
2375
2412
  }
2413
+ export interface IRequestSearchContent {
2414
+ terms: string;
2415
+ fields?: string | null;
2416
+ types?: string | null;
2417
+ limit?: number | null;
2418
+ offset?: number | null;
2419
+ page?: number | null;
2420
+ per_page?: number | null;
2421
+ }
2376
2422
  export interface IRequestSearchContentFavorites {
2377
2423
  id?: string | null;
2378
2424
  user_id?: string | null;
@@ -2807,6 +2853,10 @@ export interface IScheduledPlan {
2807
2853
  scheduled_plan_destination?: IScheduledPlanDestination[] | null;
2808
2854
  run_once?: boolean;
2809
2855
  include_links?: boolean;
2856
+ custom_url_base?: string | null;
2857
+ custom_url_params?: string | null;
2858
+ custom_url_label?: string | null;
2859
+ show_custom_url?: boolean;
2810
2860
  pdf_paper_size?: string | null;
2811
2861
  pdf_landscape?: boolean;
2812
2862
  embed?: boolean;
@@ -2910,6 +2960,20 @@ export interface ISetting {
2910
2960
  timezone?: string;
2911
2961
  allow_user_timezones?: boolean;
2912
2962
  data_connector_default_enabled?: boolean;
2963
+ host_url?: string;
2964
+ override_warnings?: boolean;
2965
+ email_domain_allowlist?: string[];
2966
+ sisu?: ISisuSetting;
2967
+ }
2968
+ export interface ISisuSetting {
2969
+ can?: IDictionary<boolean>;
2970
+ enabled?: boolean;
2971
+ extension_id?: string | null;
2972
+ configured?: boolean;
2973
+ api_key_id?: string | null;
2974
+ api_user_id?: string | null;
2975
+ installation_id?: string | null;
2976
+ listing_id_override?: string | null;
2913
2977
  }
2914
2978
  export interface ISmtpNodeStatus {
2915
2979
  is_valid?: boolean;
@@ -2924,6 +2988,7 @@ export interface ISmtpSettings {
2924
2988
  port?: number;
2925
2989
  enable_starttls_auto?: boolean;
2926
2990
  ssl_version?: SslVersion | null;
2991
+ default_smtp?: boolean | null;
2927
2992
  }
2928
2993
  export interface ISmtpStatus {
2929
2994
  is_valid?: boolean;
@@ -3062,6 +3127,7 @@ export interface IThemeSettings {
3062
3127
  show_title?: boolean;
3063
3128
  text_tile_text_color?: string;
3064
3129
  tile_background_color?: string;
3130
+ text_tile_background_color?: string;
3065
3131
  tile_text_color?: string;
3066
3132
  title_color?: string;
3067
3133
  warn_button_color?: string;
@@ -3069,6 +3135,10 @@ export interface IThemeSettings {
3069
3135
  tile_shadow?: boolean;
3070
3136
  show_last_updated_indicator?: boolean;
3071
3137
  show_reload_data_icon?: boolean;
3138
+ show_dashboard_menu?: boolean;
3139
+ show_filters_toggle?: boolean;
3140
+ show_dashboard_header?: boolean;
3141
+ center_dashboard_title?: boolean;
3072
3142
  }
3073
3143
  export interface ITimezone {
3074
3144
  value?: string | null;
@@ -3246,6 +3316,10 @@ export interface IWriteAlert {
3246
3316
  applied_dashboard_filters?: IAlertAppliedDashboardFilter[] | null;
3247
3317
  comparison_type: ComparisonType | null;
3248
3318
  cron: string;
3319
+ custom_url_base?: string | null;
3320
+ custom_url_params?: string | null;
3321
+ custom_url_label?: string | null;
3322
+ show_custom_url?: boolean;
3249
3323
  custom_title?: string | null;
3250
3324
  dashboard_element_id?: string | null;
3251
3325
  description?: string | null;
@@ -3392,6 +3466,7 @@ export interface IWriteDashboardElement {
3392
3466
  title_text?: string | null;
3393
3467
  type?: string | null;
3394
3468
  rich_content_json?: string | null;
3469
+ extension_id?: string | null;
3395
3470
  }
3396
3471
  export interface IWriteDashboardFilter {
3397
3472
  name?: string | null;
@@ -3457,7 +3532,9 @@ export interface IWriteDBConnection {
3457
3532
  sql_writing_with_info_schema?: boolean;
3458
3533
  after_connect_statements?: string | null;
3459
3534
  pdt_context_override?: IWriteDBConnectionOverride | null;
3535
+ custom_local_port?: number | null;
3460
3536
  tunnel_id?: string | null;
3537
+ uses_tns?: boolean | null;
3461
3538
  pdt_concurrency?: number | null;
3462
3539
  disable_context_comment?: boolean | null;
3463
3540
  oauth_application_id?: string | null;
@@ -3755,6 +3832,10 @@ export interface IWriteScheduledPlan {
3755
3832
  scheduled_plan_destination?: IScheduledPlanDestination[] | null;
3756
3833
  run_once?: boolean;
3757
3834
  include_links?: boolean;
3835
+ custom_url_base?: string | null;
3836
+ custom_url_params?: string | null;
3837
+ custom_url_label?: string | null;
3838
+ show_custom_url?: boolean;
3758
3839
  pdf_paper_size?: string | null;
3759
3840
  pdf_landscape?: boolean;
3760
3841
  embed?: boolean;
@@ -3780,6 +3861,19 @@ export interface IWriteSetting {
3780
3861
  timezone?: string;
3781
3862
  allow_user_timezones?: boolean;
3782
3863
  data_connector_default_enabled?: boolean;
3864
+ host_url?: string;
3865
+ override_warnings?: boolean;
3866
+ email_domain_allowlist?: string[] | null;
3867
+ sisu?: IWriteSisuSetting | null;
3868
+ }
3869
+ export interface IWriteSisuSetting {
3870
+ enabled?: boolean;
3871
+ extension_id?: string | null;
3872
+ configured?: boolean;
3873
+ api_key_id?: string | null;
3874
+ api_user_id?: string | null;
3875
+ installation_id?: string | null;
3876
+ listing_id_override?: string | null;
3783
3877
  }
3784
3878
  export interface IWriteSshServer {
3785
3879
  ssh_server_name?: string;
@@ -3789,6 +3883,7 @@ export interface IWriteSshServer {
3789
3883
  }
3790
3884
  export interface IWriteSshTunnel {
3791
3885
  ssh_server_id?: string;
3886
+ local_host_port?: number;
3792
3887
  database_host?: string;
3793
3888
  database_port?: number;
3794
3889
  }
package/lib/4.0/models.js CHANGED
@@ -6,25 +6,20 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.WeekStartDay = exports.UserAttributeFilterTypes = exports.SupportedVisualizationFormattings = exports.SupportedFormattings = exports.SupportedFormats = exports.SupportedDownloadSettings = exports.SupportedActionTypes = exports.SslVersion = exports.SecretType = exports.ResultFormat = exports.PullRequestMode = exports.PermissionType = exports.Name = exports.InvestigativeContentType = exports.Format = exports.FillStyle = exports.DeviceType = exports.DestinationType = exports.DependencyStatus = exports.ComparisonType = exports.Category = exports.Align = void 0;
7
7
  var Align;
8
8
  exports.Align = Align;
9
-
10
9
  (function (Align) {
11
10
  Align["left"] = "left";
12
11
  Align["right"] = "right";
13
12
  })(Align || (exports.Align = Align = {}));
14
-
15
13
  var Category;
16
14
  exports.Category = Category;
17
-
18
15
  (function (Category) {
19
16
  Category["parameter"] = "parameter";
20
17
  Category["filter"] = "filter";
21
18
  Category["measure"] = "measure";
22
19
  Category["dimension"] = "dimension";
23
20
  })(Category || (exports.Category = Category = {}));
24
-
25
21
  var ComparisonType;
26
22
  exports.ComparisonType = ComparisonType;
27
-
28
23
  (function (ComparisonType) {
29
24
  ComparisonType["EQUAL_TO"] = "EQUAL_TO";
30
25
  ComparisonType["GREATER_THAN"] = "GREATER_THAN";
@@ -35,59 +30,45 @@ exports.ComparisonType = ComparisonType;
35
30
  ComparisonType["DECREASES_BY"] = "DECREASES_BY";
36
31
  ComparisonType["CHANGES_BY"] = "CHANGES_BY";
37
32
  })(ComparisonType || (exports.ComparisonType = ComparisonType = {}));
38
-
39
33
  var DependencyStatus;
40
34
  exports.DependencyStatus = DependencyStatus;
41
-
42
35
  (function (DependencyStatus) {
43
36
  DependencyStatus["lock_optional"] = "lock_optional";
44
37
  DependencyStatus["lock_required"] = "lock_required";
45
38
  DependencyStatus["lock_error"] = "lock_error";
46
39
  DependencyStatus["install_none"] = "install_none";
47
40
  })(DependencyStatus || (exports.DependencyStatus = DependencyStatus = {}));
48
-
49
41
  var DestinationType;
50
42
  exports.DestinationType = DestinationType;
51
-
52
43
  (function (DestinationType) {
53
44
  DestinationType["EMAIL"] = "EMAIL";
54
45
  DestinationType["ACTION_HUB"] = "ACTION_HUB";
55
46
  })(DestinationType || (exports.DestinationType = DestinationType = {}));
56
-
57
47
  var DeviceType;
58
48
  exports.DeviceType = DeviceType;
59
-
60
49
  (function (DeviceType) {
61
50
  DeviceType["android"] = "android";
62
51
  DeviceType["ios"] = "ios";
63
52
  })(DeviceType || (exports.DeviceType = DeviceType = {}));
64
-
65
53
  var FillStyle;
66
54
  exports.FillStyle = FillStyle;
67
-
68
55
  (function (FillStyle) {
69
56
  FillStyle["enumeration"] = "enumeration";
70
57
  FillStyle["range"] = "range";
71
58
  })(FillStyle || (exports.FillStyle = FillStyle = {}));
72
-
73
59
  var Format;
74
60
  exports.Format = Format;
75
-
76
61
  (function (Format) {
77
62
  Format["topojson"] = "topojson";
78
63
  Format["vector_tile_region"] = "vector_tile_region";
79
64
  })(Format || (exports.Format = Format = {}));
80
-
81
65
  var InvestigativeContentType;
82
66
  exports.InvestigativeContentType = InvestigativeContentType;
83
-
84
67
  (function (InvestigativeContentType) {
85
68
  InvestigativeContentType["dashboard"] = "dashboard";
86
69
  })(InvestigativeContentType || (exports.InvestigativeContentType = InvestigativeContentType = {}));
87
-
88
70
  var Name;
89
71
  exports.Name = Name;
90
-
91
72
  (function (Name) {
92
73
  Name["day"] = "day";
93
74
  Name["hour"] = "hour";
@@ -100,28 +81,22 @@ exports.Name = Name;
100
81
  Name["quarter"] = "quarter";
101
82
  Name["year"] = "year";
102
83
  })(Name || (exports.Name = Name = {}));
103
-
104
84
  var PermissionType;
105
85
  exports.PermissionType = PermissionType;
106
-
107
86
  (function (PermissionType) {
108
87
  PermissionType["view"] = "view";
109
88
  PermissionType["edit"] = "edit";
110
89
  })(PermissionType || (exports.PermissionType = PermissionType = {}));
111
-
112
90
  var PullRequestMode;
113
91
  exports.PullRequestMode = PullRequestMode;
114
-
115
92
  (function (PullRequestMode) {
116
93
  PullRequestMode["off"] = "off";
117
94
  PullRequestMode["links"] = "links";
118
95
  PullRequestMode["recommended"] = "recommended";
119
96
  PullRequestMode["required"] = "required";
120
97
  })(PullRequestMode || (exports.PullRequestMode = PullRequestMode = {}));
121
-
122
98
  var ResultFormat;
123
99
  exports.ResultFormat = ResultFormat;
124
-
125
100
  (function (ResultFormat) {
126
101
  ResultFormat["inline_json"] = "inline_json";
127
102
  ResultFormat["json"] = "json";
@@ -134,45 +109,35 @@ exports.ResultFormat = ResultFormat;
134
109
  ResultFormat["xlsx"] = "xlsx";
135
110
  ResultFormat["gsxml"] = "gsxml";
136
111
  })(ResultFormat || (exports.ResultFormat = ResultFormat = {}));
137
-
138
112
  var SecretType;
139
113
  exports.SecretType = SecretType;
140
-
141
114
  (function (SecretType) {
142
115
  SecretType["SSO"] = "SSO";
143
116
  SecretType["JWT"] = "JWT";
144
117
  })(SecretType || (exports.SecretType = SecretType = {}));
145
-
146
118
  var SslVersion;
147
119
  exports.SslVersion = SslVersion;
148
-
149
120
  (function (SslVersion) {
150
121
  SslVersion["TLSv1_1"] = "TLSv1_1";
151
122
  SslVersion["SSLv23"] = "SSLv23";
152
123
  SslVersion["TLSv1_2"] = "TLSv1_2";
153
124
  })(SslVersion || (exports.SslVersion = SslVersion = {}));
154
-
155
125
  var SupportedActionTypes;
156
126
  exports.SupportedActionTypes = SupportedActionTypes;
157
-
158
127
  (function (SupportedActionTypes) {
159
128
  SupportedActionTypes["cell"] = "cell";
160
129
  SupportedActionTypes["query"] = "query";
161
130
  SupportedActionTypes["dashboard"] = "dashboard";
162
131
  SupportedActionTypes["none"] = "none";
163
132
  })(SupportedActionTypes || (exports.SupportedActionTypes = SupportedActionTypes = {}));
164
-
165
133
  var SupportedDownloadSettings;
166
134
  exports.SupportedDownloadSettings = SupportedDownloadSettings;
167
-
168
135
  (function (SupportedDownloadSettings) {
169
136
  SupportedDownloadSettings["push"] = "push";
170
137
  SupportedDownloadSettings["url"] = "url";
171
138
  })(SupportedDownloadSettings || (exports.SupportedDownloadSettings = SupportedDownloadSettings = {}));
172
-
173
139
  var SupportedFormats;
174
140
  exports.SupportedFormats = SupportedFormats;
175
-
176
141
  (function (SupportedFormats) {
177
142
  SupportedFormats["txt"] = "txt";
178
143
  SupportedFormats["csv"] = "csv";
@@ -188,26 +153,20 @@ exports.SupportedFormats = SupportedFormats;
188
153
  SupportedFormats["wysiwyg_png"] = "wysiwyg_png";
189
154
  SupportedFormats["csv_zip"] = "csv_zip";
190
155
  })(SupportedFormats || (exports.SupportedFormats = SupportedFormats = {}));
191
-
192
156
  var SupportedFormattings;
193
157
  exports.SupportedFormattings = SupportedFormattings;
194
-
195
158
  (function (SupportedFormattings) {
196
159
  SupportedFormattings["formatted"] = "formatted";
197
160
  SupportedFormattings["unformatted"] = "unformatted";
198
161
  })(SupportedFormattings || (exports.SupportedFormattings = SupportedFormattings = {}));
199
-
200
162
  var SupportedVisualizationFormattings;
201
163
  exports.SupportedVisualizationFormattings = SupportedVisualizationFormattings;
202
-
203
164
  (function (SupportedVisualizationFormattings) {
204
165
  SupportedVisualizationFormattings["apply"] = "apply";
205
166
  SupportedVisualizationFormattings["noapply"] = "noapply";
206
167
  })(SupportedVisualizationFormattings || (exports.SupportedVisualizationFormattings = SupportedVisualizationFormattings = {}));
207
-
208
168
  var UserAttributeFilterTypes;
209
169
  exports.UserAttributeFilterTypes = UserAttributeFilterTypes;
210
-
211
170
  (function (UserAttributeFilterTypes) {
212
171
  UserAttributeFilterTypes["advanced_filter_string"] = "advanced_filter_string";
213
172
  UserAttributeFilterTypes["advanced_filter_number"] = "advanced_filter_number";
@@ -219,10 +178,8 @@ exports.UserAttributeFilterTypes = UserAttributeFilterTypes;
219
178
  UserAttributeFilterTypes["yesno"] = "yesno";
220
179
  UserAttributeFilterTypes["zipcode"] = "zipcode";
221
180
  })(UserAttributeFilterTypes || (exports.UserAttributeFilterTypes = UserAttributeFilterTypes = {}));
222
-
223
181
  var WeekStartDay;
224
182
  exports.WeekStartDay = WeekStartDay;
225
-
226
183
  (function (WeekStartDay) {
227
184
  WeekStartDay["monday"] = "monday";
228
185
  WeekStartDay["tuesday"] = "tuesday";