@juhuu/sdk-ts 1.2.48 → 1.2.49

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.
package/dist/index.js CHANGED
@@ -79,7 +79,7 @@ var Service = class {
79
79
  url,
80
80
  method,
81
81
  body = void 0,
82
- useAuthentication
82
+ authenticationNotOptional
83
83
  }, options = {}) {
84
84
  if (options.triggerOnException === void 0) {
85
85
  options.triggerOnException = true;
@@ -94,7 +94,7 @@ var Service = class {
94
94
  token = options.accessToken;
95
95
  }
96
96
  console.log("accessToken:", token);
97
- if ((token === null || token === void 0) && useAuthentication === true) {
97
+ if ((token === null || token === void 0) && authenticationNotOptional === true) {
98
98
  console.error(
99
99
  "endpoint",
100
100
  url,
@@ -158,7 +158,7 @@ var Service = class {
158
158
  method: "GET",
159
159
  url: "auth/refresh",
160
160
  body: void 0,
161
- useAuthentication: true
161
+ authenticationNotOptional: true
162
162
  },
163
163
  {
164
164
  accessToken: oldRefreshToken,
@@ -183,7 +183,7 @@ var Service = class {
183
183
  url,
184
184
  method,
185
185
  body,
186
- useAuthentication
186
+ authenticationNotOptional
187
187
  },
188
188
  {
189
189
  accessToken,
@@ -296,7 +296,7 @@ var SessionService = class extends Service {
296
296
  isOffSession: SessionCreateParams.isOffSession,
297
297
  userId: SessionCreateParams.userId
298
298
  },
299
- useAuthentication: true
299
+ authenticationNotOptional: true
300
300
  },
301
301
  SessionCreateOptions
302
302
  );
@@ -310,7 +310,7 @@ var SessionService = class extends Service {
310
310
  propertyId: SessionExportParams.propertyId,
311
311
  outputType: SessionExportParams.outputType
312
312
  },
313
- useAuthentication: true
313
+ authenticationNotOptional: true
314
314
  },
315
315
  SessionExportOptions
316
316
  );
@@ -324,7 +324,7 @@ var SessionService = class extends Service {
324
324
  method: "GET",
325
325
  url: "sessions/" + SessionRetrieveParams.sessionId + "?" + queryArray.join("&"),
326
326
  body: void 0,
327
- useAuthentication: true
327
+ authenticationNotOptional: true
328
328
  });
329
329
  }
330
330
  async list(SessionListParams, SessionListOptions) {
@@ -358,7 +358,7 @@ var SessionService = class extends Service {
358
358
  method: "GET",
359
359
  url: "sessions?" + queryArray.join("&"),
360
360
  body: void 0,
361
- useAuthentication: true
361
+ authenticationNotOptional: true
362
362
  },
363
363
  SessionListOptions
364
364
  );
@@ -371,7 +371,7 @@ var SessionService = class extends Service {
371
371
  body: {
372
372
  autoRenew: SessionUpdateParams?.autoRenew
373
373
  },
374
- useAuthentication: true
374
+ authenticationNotOptional: true
375
375
  },
376
376
  SessionUpdateOptions
377
377
  );
@@ -384,7 +384,7 @@ var SessionService = class extends Service {
384
384
  body: {
385
385
  isOffSession: SessionTerminateParams.isOffSession
386
386
  },
387
- useAuthentication: true
387
+ authenticationNotOptional: true
388
388
  },
389
389
  SessionTerminateOptions
390
390
  );
@@ -397,7 +397,7 @@ var SessionService = class extends Service {
397
397
  body: {
398
398
  locationId: SessionTerminateParams.locationId
399
399
  },
400
- useAuthentication: true
400
+ authenticationNotOptional: true
401
401
  },
402
402
  SessionTerminateOptions
403
403
  );
@@ -410,7 +410,7 @@ var SessionService = class extends Service {
410
410
  body: {
411
411
  userId: SessionAttachUserParams.userId
412
412
  },
413
- useAuthentication: true
413
+ authenticationNotOptional: true
414
414
  },
415
415
  SessionAttachUserOptions
416
416
  );
@@ -421,7 +421,7 @@ var SessionService = class extends Service {
421
421
  method: "DELETE",
422
422
  url: "sessions/" + SessionDetachUserParams.sessionId + "/user",
423
423
  body: void 0,
424
- useAuthentication: true
424
+ authenticationNotOptional: true
425
425
  },
426
426
  SessionDetachUserOptions
427
427
  );
@@ -443,7 +443,7 @@ var LinkService = class extends Service {
443
443
  name: LinkCreateParams.name,
444
444
  fiveLetterQr: LinkCreateParams.fiveLetterQr
445
445
  },
446
- useAuthentication: true
446
+ authenticationNotOptional: true
447
447
  },
448
448
  LinkCreateOptions
449
449
  );
@@ -455,7 +455,7 @@ var LinkService = class extends Service {
455
455
  method: "GET",
456
456
  url: "links/" + LinkRetrieveParams.linkId + "?" + queryArray.join("&"),
457
457
  body: void 0,
458
- useAuthentication: false
458
+ authenticationNotOptional: false
459
459
  },
460
460
  LinkRetrieveOptions
461
461
  );
@@ -473,7 +473,7 @@ var LinkService = class extends Service {
473
473
  method: "GET",
474
474
  url: "links?" + queryArray.join("&"),
475
475
  body: void 0,
476
- useAuthentication: true
476
+ authenticationNotOptional: false
477
477
  },
478
478
  LinkListOptions
479
479
  );
@@ -483,7 +483,7 @@ var LinkService = class extends Service {
483
483
  {
484
484
  method: "DELETE",
485
485
  url: "links/" + LinkDeleteParams.linkId,
486
- useAuthentication: true,
486
+ authenticationNotOptional: true,
487
487
  body: void 0
488
488
  },
489
489
  LinkDeleteOptions
@@ -503,7 +503,7 @@ var UsersService = class extends Service {
503
503
  method: "GET",
504
504
  url: "users/" + UserRetrieveParams.userId + "?" + queryArray.join("&"),
505
505
  body: void 0,
506
- useAuthentication: true
506
+ authenticationNotOptional: true
507
507
  },
508
508
  UserRetrieveOptions
509
509
  );
@@ -514,7 +514,7 @@ var UsersService = class extends Service {
514
514
  method: "GET",
515
515
  url: "users/exists?email=" + UserExistsParams.email,
516
516
  body: void 0,
517
- useAuthentication: false
517
+ authenticationNotOptional: false
518
518
  },
519
519
  UserExistsOptions
520
520
  );
@@ -528,7 +528,7 @@ var UsersService = class extends Service {
528
528
  email: UserRegisterEmailPasswordParams.email,
529
529
  password: UserRegisterEmailPasswordParams.password
530
530
  },
531
- useAuthentication: false
531
+ authenticationNotOptional: false
532
532
  },
533
533
  UserRegisterEmailPasswordOptions
534
534
  );
@@ -542,7 +542,7 @@ var UsersService = class extends Service {
542
542
  email: UserLoginEmailPasswordParams.email,
543
543
  password: UserLoginEmailPasswordParams.password
544
544
  },
545
- useAuthentication: false
545
+ authenticationNotOptional: false
546
546
  },
547
547
  UserLoginEmailPasswordOptions
548
548
  );
@@ -553,7 +553,7 @@ var UsersService = class extends Service {
553
553
  method: "GET",
554
554
  url: "users/" + UserPaymentMethodTokensParams.userId + "/paymentMethodTokens",
555
555
  body: void 0,
556
- useAuthentication: true
556
+ authenticationNotOptional: true
557
557
  },
558
558
  UserPaymentMethodTokensOptions
559
559
  );
@@ -564,7 +564,7 @@ var UsersService = class extends Service {
564
564
  method: "GET",
565
565
  url: "auth/refresh",
566
566
  body: void 0,
567
- useAuthentication: true
567
+ authenticationNotOptional: true
568
568
  },
569
569
  {
570
570
  accessToken: UserRefreshAccessTokenParams?.refreshToken,
@@ -585,7 +585,7 @@ var UsersService = class extends Service {
585
585
  method: "GET",
586
586
  url: "users?" + queryArray.join("&"),
587
587
  body: void 0,
588
- useAuthentication: true
588
+ authenticationNotOptional: true
589
589
  },
590
590
  UserListOptions
591
591
  );
@@ -605,7 +605,7 @@ var UsersService = class extends Service {
605
605
  vat: UserUpdateParams?.vat,
606
606
  acceptedTermIdArray: UserUpdateParams?.acceptedTermIdArray
607
607
  },
608
- useAuthentication: true
608
+ authenticationNotOptional: true
609
609
  },
610
610
  UserUpdateOptions
611
611
  );
@@ -619,7 +619,7 @@ var UsersService = class extends Service {
619
619
  userId: UserInviteMemberParams?.userIdToInvite,
620
620
  email: UserInviteMemberParams?.email
621
621
  },
622
- useAuthentication: true
622
+ authenticationNotOptional: true
623
623
  },
624
624
  UserInviteMemberOptions
625
625
  );
@@ -630,7 +630,7 @@ var UsersService = class extends Service {
630
630
  method: "DELETE",
631
631
  url: "users/" + UserRemoveMemberParams.managementUserId + "/members/" + UserRemoveMemberParams.memberUserId,
632
632
  body: void 0,
633
- useAuthentication: true
633
+ authenticationNotOptional: true
634
634
  },
635
635
  UserRemoveMemberOptions
636
636
  );
@@ -640,7 +640,7 @@ var UsersService = class extends Service {
640
640
  {
641
641
  method: "DELETE",
642
642
  url: "users/" + UserDeleteParams.userId,
643
- useAuthentication: true,
643
+ authenticationNotOptional: true,
644
644
  body: void 0
645
645
  },
646
646
  UserDeleteOptions
@@ -681,7 +681,7 @@ var PaymentsService = class extends Service {
681
681
  method: "GET",
682
682
  url: "payments?" + queryArray.join("&"),
683
683
  body: void 0,
684
- useAuthentication: true
684
+ authenticationNotOptional: true
685
685
  },
686
686
  PaymentListOptions
687
687
  );
@@ -695,7 +695,7 @@ var PaymentsService = class extends Service {
695
695
  method: "GET",
696
696
  url: "payments/" + PaymentRetrieveParams.paymentId + "?" + queryArray.join("&"),
697
697
  body: void 0,
698
- useAuthentication: true
698
+ authenticationNotOptional: true
699
699
  });
700
700
  }
701
701
  async tokens(PaymentTokensParams, PaymentTokensOptions) {
@@ -704,7 +704,7 @@ var PaymentsService = class extends Service {
704
704
  method: "GET",
705
705
  url: "payments/" + PaymentTokensParams.paymentId + "/tokens",
706
706
  body: void 0,
707
- useAuthentication: true
707
+ authenticationNotOptional: true
708
708
  },
709
709
  PaymentTokensOptions
710
710
  );
@@ -715,7 +715,7 @@ var PaymentsService = class extends Service {
715
715
  method: "GET",
716
716
  url: "payments/" + PaymentRetrieveInvoiceUrlParams.paymentId + "/invoiceUrl",
717
717
  body: void 0,
718
- useAuthentication: true
718
+ authenticationNotOptional: true
719
719
  });
720
720
  }
721
721
  };
@@ -735,7 +735,7 @@ var PropertiesService = class extends Service {
735
735
  name: PropertyCreateParams.name,
736
736
  type: PropertyCreateParams.type
737
737
  },
738
- useAuthentication: true
738
+ authenticationNotOptional: true
739
739
  });
740
740
  }
741
741
  async retrieve(PropertyRetrieveParams, PropertyRetrieveOptions) {
@@ -744,7 +744,7 @@ var PropertiesService = class extends Service {
744
744
  method: "GET",
745
745
  url: "properties/" + PropertyRetrieveParams.propertyId + "?" + queryArray.join("&"),
746
746
  body: void 0,
747
- useAuthentication: false
747
+ authenticationNotOptional: false
748
748
  });
749
749
  }
750
750
  async list(PropertyListParams, PropertyListOptions) {
@@ -754,7 +754,7 @@ var PropertiesService = class extends Service {
754
754
  method: "GET",
755
755
  url: "properties?" + queryArray.join("&"),
756
756
  body: void 0,
757
- useAuthentication: false
757
+ authenticationNotOptional: false
758
758
  },
759
759
  PropertyListOptions
760
760
  );
@@ -775,7 +775,7 @@ var PropertiesService = class extends Service {
775
775
  colorScheme: PropertyUpdateParams.colorScheme,
776
776
  contactUrl: PropertyUpdateParams.contactUrl
777
777
  },
778
- useAuthentication: true
778
+ authenticationNotOptional: true
779
779
  },
780
780
  PropertyUpdateOptions
781
781
  );
@@ -786,7 +786,7 @@ var PropertiesService = class extends Service {
786
786
  method: "GET",
787
787
  url: "properties/" + PropertyStripeAccountUrlParams.propertyId + "/stripeAccountUrl",
788
788
  body: void 0,
789
- useAuthentication: true
789
+ authenticationNotOptional: true
790
790
  },
791
791
  PropertyStripeAccountUrlOptions
792
792
  );
@@ -813,7 +813,7 @@ var PointsService = class extends Service {
813
813
  method: "GET",
814
814
  url: "points/map?" + queryArray.join("&"),
815
815
  body: void 0,
816
- useAuthentication: false
816
+ authenticationNotOptional: false
817
817
  },
818
818
  PointListOptions
819
819
  );
@@ -828,7 +828,7 @@ var PointsService = class extends Service {
828
828
  method: "GET",
829
829
  url: "points?" + queryArray.join("&"),
830
830
  body: void 0,
831
- useAuthentication: false
831
+ authenticationNotOptional: false
832
832
  },
833
833
  PointListOptions
834
834
  );
@@ -879,7 +879,7 @@ var DevicesService = class extends Service {
879
879
  deviceTemplateId: DeviceCreateParams.deviceTemplateId,
880
880
  name: DeviceCreateParams.name
881
881
  },
882
- useAuthentication: true
882
+ authenticationNotOptional: true
883
883
  },
884
884
  DeviceCreateOptions
885
885
  );
@@ -897,7 +897,7 @@ var DevicesService = class extends Service {
897
897
  method: "GET",
898
898
  url: "devices/" + DeviceRetrieveParams.deviceId + "?" + queryArray.join("&"),
899
899
  body: void 0,
900
- useAuthentication: false
900
+ authenticationNotOptional: false
901
901
  },
902
902
  DeviceRetrieveOptions
903
903
  );
@@ -924,7 +924,7 @@ var DevicesService = class extends Service {
924
924
  method: "GET",
925
925
  url: "devices?" + queryArray.join("&"),
926
926
  body: void 0,
927
- useAuthentication: false
927
+ authenticationNotOptional: false
928
928
  },
929
929
  DeviceListOptions
930
930
  );
@@ -954,7 +954,7 @@ var DevicesService = class extends Service {
954
954
  body: {
955
955
  message: DeviceMessageParams.message
956
956
  },
957
- useAuthentication: true
957
+ authenticationNotOptional: true
958
958
  },
959
959
  DeviceMessageOptions
960
960
  );
@@ -967,7 +967,7 @@ var DevicesService = class extends Service {
967
967
  body: {
968
968
  value: DeviceParameterParams.value
969
969
  },
970
- useAuthentication: true
970
+ authenticationNotOptional: true
971
971
  },
972
972
  DeviceParameterOptions
973
973
  );
@@ -978,7 +978,7 @@ var DevicesService = class extends Service {
978
978
  method: "POST",
979
979
  url: "devices/" + DeviceCommandExecuteParams.deviceId + "/command/" + DeviceCommandExecuteParams.commandName,
980
980
  body: {},
981
- useAuthentication: true
981
+ authenticationNotOptional: true
982
982
  },
983
983
  DeviceCommandExecuteOptions
984
984
  );
@@ -988,7 +988,7 @@ var DevicesService = class extends Service {
988
988
  {
989
989
  method: "DELETE",
990
990
  url: "devices/" + DeviceDeleteParams.deviceId,
991
- useAuthentication: true,
991
+ authenticationNotOptional: true,
992
992
  body: void 0
993
993
  },
994
994
  DeviceDeleteOptions
@@ -1011,7 +1011,7 @@ var DeviceTemplatesService = class extends Service {
1011
1011
  productId: DeviceTemplateCreateParams.productId,
1012
1012
  name: DeviceTemplateCreateParams.name
1013
1013
  },
1014
- useAuthentication: true
1014
+ authenticationNotOptional: true
1015
1015
  },
1016
1016
  DeviceTemplateCreateOptions
1017
1017
  );
@@ -1026,7 +1026,7 @@ var DeviceTemplatesService = class extends Service {
1026
1026
  method: "GET",
1027
1027
  url: "deviceTemplates/" + DeviceTemplateRetrieveParams.deviceTemplateId + "?" + queryArray.join("&"),
1028
1028
  body: void 0,
1029
- useAuthentication: false
1029
+ authenticationNotOptional: false
1030
1030
  },
1031
1031
  DeviceTemplateRetrieveOptions
1032
1032
  );
@@ -1041,7 +1041,7 @@ var DeviceTemplatesService = class extends Service {
1041
1041
  method: "GET",
1042
1042
  url: "deviceTemplates?" + queryArray.join("&"),
1043
1043
  body: void 0,
1044
- useAuthentication: false
1044
+ authenticationNotOptional: false
1045
1045
  },
1046
1046
  DeviceTemplateListOptions
1047
1047
  );
@@ -1051,7 +1051,7 @@ var DeviceTemplatesService = class extends Service {
1051
1051
  {
1052
1052
  method: "DELETE",
1053
1053
  url: "deviceTemplates/" + DeviceTemplateDeleteParams.deviceTemplateId,
1054
- useAuthentication: true,
1054
+ authenticationNotOptional: true,
1055
1055
  body: void 0
1056
1056
  },
1057
1057
  DeviceTemplateDeleteOptions
@@ -1074,7 +1074,7 @@ var LocationsService = class extends Service {
1074
1074
  name: LocationCreateParams.name,
1075
1075
  type: LocationCreateParams.type
1076
1076
  },
1077
- useAuthentication: true
1077
+ authenticationNotOptional: true
1078
1078
  },
1079
1079
  LocationCreateOptions
1080
1080
  );
@@ -1089,7 +1089,7 @@ var LocationsService = class extends Service {
1089
1089
  method: "GET",
1090
1090
  url: "locations/" + LocationRetrieveParams.locationId + "?" + queryArray.join("&"),
1091
1091
  body: void 0,
1092
- useAuthentication: false
1092
+ authenticationNotOptional: false
1093
1093
  },
1094
1094
  LocationRetrieveOptions
1095
1095
  );
@@ -1110,7 +1110,7 @@ var LocationsService = class extends Service {
1110
1110
  method: "GET",
1111
1111
  url: "locations?" + queryArray.join("&"),
1112
1112
  body: void 0,
1113
- useAuthentication: false
1113
+ authenticationNotOptional: false
1114
1114
  },
1115
1115
  LocationListOptions
1116
1116
  );
@@ -1133,7 +1133,7 @@ var LocationsService = class extends Service {
1133
1133
  rentOfferArray: LocationUpdateParams.rentOfferArray,
1134
1134
  reservationOfferArray: LocationUpdateParams.reservationOfferArray
1135
1135
  },
1136
- useAuthentication: true
1136
+ authenticationNotOptional: true
1137
1137
  },
1138
1138
  LocationUpdateOptions
1139
1139
  );
@@ -1143,7 +1143,7 @@ var LocationsService = class extends Service {
1143
1143
  {
1144
1144
  method: "DELETE",
1145
1145
  url: "locations/" + LocationDeleteParams.locationId,
1146
- useAuthentication: true,
1146
+ authenticationNotOptional: true,
1147
1147
  body: void 0
1148
1148
  },
1149
1149
  LocationDeleteOptions
@@ -1165,7 +1165,7 @@ var TermsService = class extends Service {
1165
1165
  propertyId: TermCreateParams.propertyId,
1166
1166
  name: TermCreateParams.name
1167
1167
  },
1168
- useAuthentication: true
1168
+ authenticationNotOptional: true
1169
1169
  },
1170
1170
  TermCreateOptions
1171
1171
  );
@@ -1180,7 +1180,7 @@ var TermsService = class extends Service {
1180
1180
  method: "GET",
1181
1181
  url: "terms/" + TermRetrieveParams.termId + "?" + queryArray.join("&"),
1182
1182
  body: void 0,
1183
- useAuthentication: false
1183
+ authenticationNotOptional: false
1184
1184
  },
1185
1185
  TermRetrieveOptions
1186
1186
  );
@@ -1195,7 +1195,7 @@ var TermsService = class extends Service {
1195
1195
  method: "GET",
1196
1196
  url: "terms?" + queryArray.join("&"),
1197
1197
  body: void 0,
1198
- useAuthentication: false
1198
+ authenticationNotOptional: false
1199
1199
  },
1200
1200
  TermListOptions
1201
1201
  );
@@ -1208,7 +1208,7 @@ var TermsService = class extends Service {
1208
1208
  body: {
1209
1209
  userId: TermAcceptParams.userId
1210
1210
  },
1211
- useAuthentication: true
1211
+ authenticationNotOptional: true
1212
1212
  },
1213
1213
  TermAcceptOptions
1214
1214
  );
@@ -1218,7 +1218,7 @@ var TermsService = class extends Service {
1218
1218
  {
1219
1219
  method: "DELETE",
1220
1220
  url: "terms/" + TermDeleteParams.termId,
1221
- useAuthentication: true,
1221
+ authenticationNotOptional: true,
1222
1222
  body: void 0
1223
1223
  },
1224
1224
  TermDeleteOptions
@@ -1244,7 +1244,7 @@ var TariffsService = class extends Service {
1244
1244
  continue: TariffCreateParams.continue,
1245
1245
  name: TariffCreateParams.name
1246
1246
  },
1247
- useAuthentication: true
1247
+ authenticationNotOptional: true
1248
1248
  },
1249
1249
  TariffCreateOptions
1250
1250
  );
@@ -1259,7 +1259,7 @@ var TariffsService = class extends Service {
1259
1259
  method: "GET",
1260
1260
  url: "tariffs/" + TariffRetrieveParams.tariffId + "?" + queryArray.join("&"),
1261
1261
  body: void 0,
1262
- useAuthentication: false
1262
+ authenticationNotOptional: false
1263
1263
  },
1264
1264
  TariffRetrieveOptions
1265
1265
  );
@@ -1274,7 +1274,7 @@ var TariffsService = class extends Service {
1274
1274
  method: "GET",
1275
1275
  url: "tariffs?" + queryArray.join("&"),
1276
1276
  body: void 0,
1277
- useAuthentication: false
1277
+ authenticationNotOptional: false
1278
1278
  },
1279
1279
  TariffListOptions
1280
1280
  );
@@ -1297,7 +1297,7 @@ var TariffsService = class extends Service {
1297
1297
  autoRenewManualEnabled: TariffUpdateParams.autoRenewManualEnabled,
1298
1298
  manualTerminationEnabled: TariffUpdateParams.manualTerminationEnabled
1299
1299
  },
1300
- useAuthentication: true
1300
+ authenticationNotOptional: true
1301
1301
  },
1302
1302
  TariffUpdateOptions
1303
1303
  );
@@ -1377,7 +1377,7 @@ var TariffsService = class extends Service {
1377
1377
  {
1378
1378
  method: "DELETE",
1379
1379
  url: "tariffs/" + TariffDeleteParams.tariffId,
1380
- useAuthentication: true,
1380
+ authenticationNotOptional: true,
1381
1381
  body: void 0
1382
1382
  },
1383
1383
  TariffDeleteOptions
@@ -1399,7 +1399,7 @@ var ProductService = class extends Service {
1399
1399
  propertyId: ProductCreateParams.propertyId,
1400
1400
  name: ProductCreateParams.name
1401
1401
  },
1402
- useAuthentication: true
1402
+ authenticationNotOptional: true
1403
1403
  },
1404
1404
  ProductCreateOptions
1405
1405
  );
@@ -1432,7 +1432,7 @@ var ProductService = class extends Service {
1432
1432
  method: "GET",
1433
1433
  url: "products?" + queryArray.join("&"),
1434
1434
  body: void 0,
1435
- useAuthentication: false
1435
+ authenticationNotOptional: false
1436
1436
  },
1437
1437
  ProductListOptions
1438
1438
  );
@@ -1447,7 +1447,7 @@ var ProductService = class extends Service {
1447
1447
  method: "GET",
1448
1448
  url: "products/" + params.productId + "?" + queryArray.join("&"),
1449
1449
  body: void 0,
1450
- useAuthentication: false
1450
+ authenticationNotOptional: false
1451
1451
  },
1452
1452
  options
1453
1453
  );
@@ -1457,7 +1457,7 @@ var ProductService = class extends Service {
1457
1457
  {
1458
1458
  method: "DELETE",
1459
1459
  url: "products/" + ProductDeleteParams.productId,
1460
- useAuthentication: true,
1460
+ authenticationNotOptional: true,
1461
1461
  body: void 0
1462
1462
  },
1463
1463
  ProductDeleteOptions
@@ -1475,7 +1475,7 @@ var SettingsService = class extends Service {
1475
1475
  method: "GET",
1476
1476
  url: "sessions/",
1477
1477
  body: void 0,
1478
- useAuthentication: false
1478
+ authenticationNotOptional: false
1479
1479
  });
1480
1480
  }
1481
1481
  };
@@ -1494,7 +1494,7 @@ var AccountingAreasService = class extends Service {
1494
1494
  propertyId: AccountingAreaCreateParams.propertyId,
1495
1495
  name: AccountingAreaCreateParams.name
1496
1496
  },
1497
- useAuthentication: true
1497
+ authenticationNotOptional: true
1498
1498
  },
1499
1499
  AccountingAreaCreateOptions
1500
1500
  );
@@ -1511,7 +1511,7 @@ var AccountingAreasService = class extends Service {
1511
1511
  method: "GET",
1512
1512
  url: "accountingAreas/" + AccountingAreaRetrieveParams.accountingAreaId + "?" + queryArray.join("&"),
1513
1513
  body: void 0,
1514
- useAuthentication: false
1514
+ authenticationNotOptional: false
1515
1515
  },
1516
1516
  AccountingAreaRetrieveOptions
1517
1517
  );
@@ -1526,7 +1526,7 @@ var AccountingAreasService = class extends Service {
1526
1526
  method: "GET",
1527
1527
  url: "accountingAreas?" + queryArray.join("&"),
1528
1528
  body: void 0,
1529
- useAuthentication: false
1529
+ authenticationNotOptional: false
1530
1530
  },
1531
1531
  AccountingAreaListOptions
1532
1532
  );
@@ -1536,7 +1536,7 @@ var AccountingAreasService = class extends Service {
1536
1536
  {
1537
1537
  method: "DELETE",
1538
1538
  url: "accountingAreas/" + AccountingAreaDeleteParams.accountingAreaId,
1539
- useAuthentication: true,
1539
+ authenticationNotOptional: true,
1540
1540
  body: void 0
1541
1541
  },
1542
1542
  AccountingAreaDeleteOptions
@@ -1569,7 +1569,7 @@ var ConnectorsService = class extends Service {
1569
1569
  connectionMode: ConnectorCreateParams.connectionMode,
1570
1570
  type: ConnectorCreateParams.type
1571
1571
  },
1572
- useAuthentication: true
1572
+ authenticationNotOptional: true
1573
1573
  },
1574
1574
  ConnectorCreateOptions
1575
1575
  );
@@ -1584,7 +1584,7 @@ var ConnectorsService = class extends Service {
1584
1584
  method: "GET",
1585
1585
  url: "connectors/" + ConnectorRetrieveParams.connectorId + "?" + queryArray.join("&"),
1586
1586
  body: void 0,
1587
- useAuthentication: false
1587
+ authenticationNotOptional: false
1588
1588
  },
1589
1589
  ConnectorRetrieveOptions
1590
1590
  );
@@ -1599,7 +1599,7 @@ var ConnectorsService = class extends Service {
1599
1599
  method: "GET",
1600
1600
  url: "connectors?" + queryArray.join("&"),
1601
1601
  body: void 0,
1602
- useAuthentication: false
1602
+ authenticationNotOptional: false
1603
1603
  },
1604
1604
  ConnectorListOptions
1605
1605
  );
@@ -1609,7 +1609,7 @@ var ConnectorsService = class extends Service {
1609
1609
  {
1610
1610
  method: "DELETE",
1611
1611
  url: "connectors/" + ConnectorDeleteParams.connectorId,
1612
- useAuthentication: true,
1612
+ authenticationNotOptional: true,
1613
1613
  body: void 0
1614
1614
  },
1615
1615
  ConnectorDeleteOptions
@@ -1632,7 +1632,7 @@ var PayoutsService = class extends Service {
1632
1632
  method: "GET",
1633
1633
  url: "payouts/" + PayoutRetrieveParams.payoutId + "?" + queryArray.join("&"),
1634
1634
  body: void 0,
1635
- useAuthentication: false
1635
+ authenticationNotOptional: false
1636
1636
  },
1637
1637
  PayoutRetrieveOptions
1638
1638
  );
@@ -1647,7 +1647,7 @@ var PayoutsService = class extends Service {
1647
1647
  method: "GET",
1648
1648
  url: "payouts?" + queryArray.join("&"),
1649
1649
  body: void 0,
1650
- useAuthentication: false
1650
+ authenticationNotOptional: false
1651
1651
  },
1652
1652
  PayoutListOptions
1653
1653
  );
@@ -1666,7 +1666,7 @@ var ConnectorMessagesService = class extends Service {
1666
1666
  method: "GET",
1667
1667
  url: "connectorMessages/" + ConnectorMessageRetrieveParams.connectorMessageId + "?" + queryArray.join("&"),
1668
1668
  body: void 0,
1669
- useAuthentication: true
1669
+ authenticationNotOptional: true
1670
1670
  },
1671
1671
  ConnectorMessageRetrieveOptions
1672
1672
  );
@@ -1690,7 +1690,7 @@ var ConnectorMessagesService = class extends Service {
1690
1690
  method: "GET",
1691
1691
  url: "connectorMessages?" + queryArray.join("&"),
1692
1692
  body: void 0,
1693
- useAuthentication: true
1693
+ authenticationNotOptional: true
1694
1694
  },
1695
1695
  ConnectorMessageListOptions
1696
1696
  );
@@ -1712,7 +1712,7 @@ var SimsService = class extends Service {
1712
1712
  iccid: SimCreateParams.iccid,
1713
1713
  name: SimCreateParams.name
1714
1714
  },
1715
- useAuthentication: true
1715
+ authenticationNotOptional: true
1716
1716
  },
1717
1717
  SimCreateOptions
1718
1718
  );
@@ -1723,7 +1723,7 @@ var SimsService = class extends Service {
1723
1723
  method: "GET",
1724
1724
  url: "sims/" + SimRetrieveParams.simId,
1725
1725
  body: void 0,
1726
- useAuthentication: false
1726
+ authenticationNotOptional: false
1727
1727
  },
1728
1728
  SimRetrieveOptions
1729
1729
  );
@@ -1738,7 +1738,7 @@ var SimsService = class extends Service {
1738
1738
  method: "GET",
1739
1739
  url: "sims?" + queryArray.join("&"),
1740
1740
  body: void 0,
1741
- useAuthentication: false
1741
+ authenticationNotOptional: false
1742
1742
  },
1743
1743
  SimListOptions
1744
1744
  );
@@ -1749,7 +1749,7 @@ var SimsService = class extends Service {
1749
1749
  method: "PATCH",
1750
1750
  url: "sims/" + SimUpdateFromProviderParams.simId + "/updateFromProvider",
1751
1751
  body: void 0,
1752
- useAuthentication: false
1752
+ authenticationNotOptional: false
1753
1753
  },
1754
1754
  SimUpdateFromProviderOptions
1755
1755
  );
@@ -1759,7 +1759,7 @@ var SimsService = class extends Service {
1759
1759
  {
1760
1760
  method: "DELETE",
1761
1761
  url: "sims/" + SimDeleteParams.simId,
1762
- useAuthentication: true,
1762
+ authenticationNotOptional: true,
1763
1763
  body: void 0
1764
1764
  },
1765
1765
  SimDeleteOptions
@@ -1783,7 +1783,7 @@ var LicenseTemplatesService = class extends Service {
1783
1783
  regex: LicenseTemplateCreateParams.regex,
1784
1784
  name: LicenseTemplateCreateParams.name
1785
1785
  },
1786
- useAuthentication: true
1786
+ authenticationNotOptional: true
1787
1787
  },
1788
1788
  LicenseTemplateCreateOptions
1789
1789
  );
@@ -1804,7 +1804,7 @@ var LicenseTemplatesService = class extends Service {
1804
1804
  method: "GET",
1805
1805
  url: "licenseTemplates?" + queryArray.join("&"),
1806
1806
  body: void 0,
1807
- useAuthentication: true
1807
+ authenticationNotOptional: true
1808
1808
  },
1809
1809
  LicenseTemplateListOptions
1810
1810
  );
@@ -1820,7 +1820,7 @@ var LicenseTemplatesService = class extends Service {
1820
1820
  method: "GET",
1821
1821
  url: "licenseTemplates/" + LicenseTemplateRetrieveParams.licenseTemplateId + "?" + queryArray.join("&"),
1822
1822
  body: void 0,
1823
- useAuthentication: true
1823
+ authenticationNotOptional: true
1824
1824
  });
1825
1825
  }
1826
1826
  async regexValidate(LicenseTemplateRegexValidateParams, LicenseTemplateRegexValidateOptions) {
@@ -1833,7 +1833,7 @@ var LicenseTemplatesService = class extends Service {
1833
1833
  text: LicenseTemplateRegexValidateParams.text,
1834
1834
  licenseTemplateId: LicenseTemplateRegexValidateParams.licenseTemplateId
1835
1835
  },
1836
- useAuthentication: true
1836
+ authenticationNotOptional: true
1837
1837
  },
1838
1838
  LicenseTemplateRegexValidateOptions
1839
1839
  );
@@ -1843,7 +1843,7 @@ var LicenseTemplatesService = class extends Service {
1843
1843
  {
1844
1844
  method: "DELETE",
1845
1845
  url: "licenseTemplates/" + LicenseTemplateDeleteParams.licenseTemplateId,
1846
- useAuthentication: true,
1846
+ authenticationNotOptional: true,
1847
1847
  body: void 0
1848
1848
  },
1849
1849
  LicenseTemplateDeleteOptions
@@ -1864,7 +1864,7 @@ var ArticlesService = class extends Service {
1864
1864
  body: {
1865
1865
  propertyId: ArticleCreateParams.propertyId
1866
1866
  },
1867
- useAuthentication: true
1867
+ authenticationNotOptional: true
1868
1868
  },
1869
1869
  ArticleCreateOptions
1870
1870
  );
@@ -1888,7 +1888,7 @@ var ArticlesService = class extends Service {
1888
1888
  method: "GET",
1889
1889
  url: "articles?" + queryArray.join("&"),
1890
1890
  body: void 0,
1891
- useAuthentication: false
1891
+ authenticationNotOptional: false
1892
1892
  },
1893
1893
  ArticleListOptions
1894
1894
  );
@@ -1903,7 +1903,7 @@ var ArticlesService = class extends Service {
1903
1903
  method: "GET",
1904
1904
  url: "articles/" + ArticleRetrieveParams.articleId + "?" + queryArray.join("&"),
1905
1905
  body: void 0,
1906
- useAuthentication: false
1906
+ authenticationNotOptional: false
1907
1907
  },
1908
1908
  ArticleRetrieveOptions
1909
1909
  );
@@ -1921,7 +1921,7 @@ var ArticlesService = class extends Service {
1921
1921
  status: ArticleUpdateParams.status,
1922
1922
  languageCodeArray: ArticleUpdateParams.languageCodeArray
1923
1923
  },
1924
- useAuthentication: true
1924
+ authenticationNotOptional: true
1925
1925
  },
1926
1926
  ArticleUpdateOptions
1927
1927
  );
@@ -1931,7 +1931,7 @@ var ArticlesService = class extends Service {
1931
1931
  {
1932
1932
  method: "DELETE",
1933
1933
  url: "articles/" + ArticleDeleteParams.articleId,
1934
- useAuthentication: true,
1934
+ authenticationNotOptional: true,
1935
1935
  body: void 0
1936
1936
  },
1937
1937
  ArticleDeleteOptions
@@ -1956,7 +1956,7 @@ var ArticlesService = class extends Service {
1956
1956
  method: "GET",
1957
1957
  url: "articles/search?" + queryArray.join("&"),
1958
1958
  body: void 0,
1959
- useAuthentication: false
1959
+ authenticationNotOptional: false
1960
1960
  },
1961
1961
  ArticleSearchOptions
1962
1962
  );
@@ -1976,7 +1976,7 @@ var ChatsService = class extends Service {
1976
1976
  body: {
1977
1977
  userId: ChatCreateParams.userId
1978
1978
  },
1979
- useAuthentication: true
1979
+ authenticationNotOptional: true
1980
1980
  },
1981
1981
  ChatCreateOptions
1982
1982
  );
@@ -1997,7 +1997,7 @@ var ChatsService = class extends Service {
1997
1997
  method: "GET",
1998
1998
  url: "chats?" + queryArray.join("&"),
1999
1999
  body: void 0,
2000
- useAuthentication: false
2000
+ authenticationNotOptional: false
2001
2001
  },
2002
2002
  ChatListOptions
2003
2003
  );
@@ -2009,7 +2009,7 @@ var ChatsService = class extends Service {
2009
2009
  method: "GET",
2010
2010
  url: "chats/" + ChatRetrieveParams.chatId + "?" + queryArray.join("&"),
2011
2011
  body: void 0,
2012
- useAuthentication: false
2012
+ authenticationNotOptional: false
2013
2013
  },
2014
2014
  ChatRetrieveOptions
2015
2015
  );
@@ -2022,7 +2022,7 @@ var ChatsService = class extends Service {
2022
2022
  body: {
2023
2023
  title: ChatUpdateParams.title
2024
2024
  },
2025
- useAuthentication: true
2025
+ authenticationNotOptional: true
2026
2026
  },
2027
2027
  ChatUpdateOptions
2028
2028
  );
@@ -2032,7 +2032,7 @@ var ChatsService = class extends Service {
2032
2032
  {
2033
2033
  method: "DELETE",
2034
2034
  url: "chats/" + ChatDeleteParams.chatId,
2035
- useAuthentication: true,
2035
+ authenticationNotOptional: true,
2036
2036
  body: void 0
2037
2037
  },
2038
2038
  ChatDeleteOptions
@@ -2044,7 +2044,7 @@ var ChatsService = class extends Service {
2044
2044
  method: "PATCH",
2045
2045
  url: "chats/" + ChatUpdateParams.chatId + "/complete",
2046
2046
  body: void 0,
2047
- useAuthentication: true
2047
+ authenticationNotOptional: true
2048
2048
  },
2049
2049
  ChatUpdateOptions
2050
2050
  );
@@ -2066,7 +2066,7 @@ var ChatMessagesService = class extends Service {
2066
2066
  message: ChatMessageCreateParams.message,
2067
2067
  userId: ChatMessageCreateParams.userId
2068
2068
  },
2069
- useAuthentication: true
2069
+ authenticationNotOptional: true
2070
2070
  },
2071
2071
  ChatMessageCreateOptions
2072
2072
  );
@@ -2090,7 +2090,7 @@ var ChatMessagesService = class extends Service {
2090
2090
  method: "GET",
2091
2091
  url: "chatMessages?" + queryArray.join("&"),
2092
2092
  body: void 0,
2093
- useAuthentication: true
2093
+ authenticationNotOptional: true
2094
2094
  },
2095
2095
  ChatMessageListOptions
2096
2096
  );
@@ -2101,7 +2101,7 @@ var ChatMessagesService = class extends Service {
2101
2101
  method: "GET",
2102
2102
  url: "chatMessages/" + ChatMessageRetrieveParams.chatMessageId + "?" + queryArray.join("&"),
2103
2103
  body: void 0,
2104
- useAuthentication: true
2104
+ authenticationNotOptional: true
2105
2105
  });
2106
2106
  }
2107
2107
  };
@@ -2127,7 +2127,7 @@ var ArticleEmbeddingsService = class extends Service {
2127
2127
  method: "GET",
2128
2128
  url: "articleEmbeddingEmbeddings?" + queryArray.join("&"),
2129
2129
  body: void 0,
2130
- useAuthentication: false
2130
+ authenticationNotOptional: false
2131
2131
  },
2132
2132
  ArticleEmbeddingListOptions
2133
2133
  );
@@ -2144,7 +2144,7 @@ var ArticleEmbeddingsService = class extends Service {
2144
2144
  method: "GET",
2145
2145
  url: "articleEmbeddingEmbeddings/" + ArticleEmbeddingRetrieveParams.articleEmbeddingId + "?" + queryArray.join("&"),
2146
2146
  body: void 0,
2147
- useAuthentication: false
2147
+ authenticationNotOptional: false
2148
2148
  },
2149
2149
  ArticleEmbeddingRetrieveOptions
2150
2150
  );