@victoria-company/agora-client 1.0.202506121334 → 1.0.202506171058

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.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { BaseRequestBuilder, RequestConfiguration, UntypedNode, RequestInformation, Parsable, AdditionalDataHolder, DateOnly, ParseNode, ApiError, SerializationWriter, MultipartBody, KeysToExcludeForNavigationMetadata, NavigationMetadata, RequestAdapter } from '@microsoft/kiota-abstractions';
1
+ import { BaseRequestBuilder, RequestConfiguration, RequestInformation, Parsable, AdditionalDataHolder, DateOnly, ParseNode, ApiError, SerializationWriter, MultipartBody, KeysToExcludeForNavigationMetadata, NavigationMetadata, RequestAdapter } from '@microsoft/kiota-abstractions';
2
2
 
3
3
  /**
4
4
  * Builds and executes requests for operations under /api/batches/nightly/to_update_asap
@@ -6,10 +6,9 @@ import { BaseRequestBuilder, RequestConfiguration, UntypedNode, RequestInformati
6
6
  interface To_update_asapRequestBuilder extends BaseRequestBuilder<To_update_asapRequestBuilder> {
7
7
  /**
8
8
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9
- * @returns {Promise<UntypedNode>}
10
9
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11
10
  */
12
- get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11
+ get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13
12
  /**
14
13
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
15
14
  * @returns {RequestInformation}
@@ -1362,6 +1361,10 @@ interface CreateDelegateLeadRequest extends Parsable {
1362
1361
  * The firstName property
1363
1362
  */
1364
1363
  firstName?: string | null;
1364
+ /**
1365
+ * The gclid property
1366
+ */
1367
+ gclid?: string | null;
1365
1368
  /**
1366
1369
  * The hasACar property
1367
1370
  */
@@ -4501,20 +4504,26 @@ interface DownloadIntranetPaymentSheetRequest_MergePaymentInfo extends Parsable
4501
4504
  qrUrl?: string | null;
4502
4505
  }
4503
4506
  type EmailTemplates = (typeof EmailTemplatesObject)[keyof typeof EmailTemplatesObject];
4507
+ /**
4508
+ * the dto used to send an error response to the client
4509
+ */
4504
4510
  interface ErrorResponse extends ApiError, Parsable {
4505
4511
  /**
4506
- * The errors property
4512
+ * the collection of errors for the current context
4507
4513
  */
4508
4514
  errors?: ErrorResponse_errors | null;
4509
4515
  /**
4510
- * The message property
4516
+ * the message for the error response
4511
4517
  */
4512
4518
  messageEscaped?: string | null;
4513
4519
  /**
4514
- * The statusCode property
4520
+ * the http status code sent to the client. default is 400.
4515
4521
  */
4516
4522
  statusCode?: number | null;
4517
4523
  }
4524
+ /**
4525
+ * the collection of errors for the current context
4526
+ */
4518
4527
  interface ErrorResponse_errors extends AdditionalDataHolder, Parsable {
4519
4528
  /**
4520
4529
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
@@ -6908,19 +6917,25 @@ interface SetDelegatePaymentMethodRequest extends Parsable {
6908
6917
  */
6909
6918
  delegatePaymentMethod?: DelegatePaymentMethod | null;
6910
6919
  }
6920
+ /**
6921
+ * A base type to use for creating smart enums with inner value of type Int32.
6922
+ */
6911
6923
  interface SmartEnumOfPaymentStatus extends AdditionalDataHolder, Parsable, SmartEnumOfPaymentStatusAndInt32 {
6912
6924
  /**
6913
6925
  * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
6914
6926
  */
6915
6927
  additionalData?: Record<string, unknown>;
6916
6928
  }
6929
+ /**
6930
+ * A base type to use for creating smart enums.
6931
+ */
6917
6932
  interface SmartEnumOfPaymentStatusAndInt32 extends Parsable {
6918
6933
  /**
6919
- * The name property
6934
+ * Gets the name.
6920
6935
  */
6921
6936
  name?: string | null;
6922
6937
  /**
6923
- * The value property
6938
+ * Gets the value.
6924
6939
  */
6925
6940
  value?: number | null;
6926
6941
  }
@@ -8257,10 +8272,9 @@ interface RunRequestBuilder extends BaseRequestBuilder<RunRequestBuilder> {
8257
8272
  /**
8258
8273
  * @param body The request body
8259
8274
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8260
- * @returns {Promise<UntypedNode>}
8261
8275
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8262
8276
  */
8263
- post(body: RunBatchesRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8277
+ post(body: RunBatchesRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8264
8278
  /**
8265
8279
  * @param body The request body
8266
8280
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8289,10 +8303,9 @@ interface BatchesRequestBuilder extends BaseRequestBuilder<BatchesRequestBuilder
8289
8303
  interface ApproveRequestBuilder$1 extends BaseRequestBuilder<ApproveRequestBuilder$1> {
8290
8304
  /**
8291
8305
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8292
- * @returns {Promise<UntypedNode>}
8293
8306
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8294
8307
  */
8295
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8308
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8296
8309
  /**
8297
8310
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8298
8311
  * @returns {RequestInformation}
@@ -8307,10 +8320,9 @@ interface AssignDelegateRequestBuilder extends BaseRequestBuilder<AssignDelegate
8307
8320
  /**
8308
8321
  * @param body The request body
8309
8322
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8310
- * @returns {Promise<UntypedNode>}
8311
8323
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8312
8324
  */
8313
- put(body: AssignDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8325
+ put(body: AssignDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8314
8326
  /**
8315
8327
  * @param body The request body
8316
8328
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8326,10 +8338,9 @@ interface AssignDemoRequestBuilder extends BaseRequestBuilder<AssignDemoRequestB
8326
8338
  /**
8327
8339
  * @param body The request body
8328
8340
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8329
- * @returns {Promise<UntypedNode>}
8330
8341
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8331
8342
  */
8332
- put(body: AssignDemoRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8343
+ put(body: AssignDemoRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8333
8344
  /**
8334
8345
  * @param body The request body
8335
8346
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8391,10 +8402,9 @@ interface ConfirmRequestBuilder extends BaseRequestBuilder<ConfirmRequestBuilder
8391
8402
  /**
8392
8403
  * Confirm a cart paid entirely with vouchers and wallet
8393
8404
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8394
- * @returns {Promise<UntypedNode>}
8395
8405
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8396
8406
  */
8397
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8407
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8398
8408
  /**
8399
8409
  * Confirm a cart paid entirely with vouchers and wallet
8400
8410
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8409,10 +8419,9 @@ interface ConfirmRequestBuilder extends BaseRequestBuilder<ConfirmRequestBuilder
8409
8419
  interface ConfirmAdvantageScreenViewedRequestBuilder extends BaseRequestBuilder<ConfirmAdvantageScreenViewedRequestBuilder> {
8410
8420
  /**
8411
8421
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8412
- * @returns {Promise<UntypedNode>}
8413
8422
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8414
8423
  */
8415
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8424
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8416
8425
  /**
8417
8426
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8418
8427
  * @returns {RequestInformation}
@@ -8427,11 +8436,10 @@ interface DeliveryRequestBuilder extends BaseRequestBuilder<DeliveryRequestBuild
8427
8436
  /**
8428
8437
  * @param body The request body
8429
8438
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8430
- * @returns {Promise<UntypedNode>}
8431
8439
  * @throws {ErrorResponse} error when the service returns a 400 status code
8432
8440
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8433
8441
  */
8434
- put(body: SetCartDeliveryRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8442
+ put(body: SetCartDeliveryRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8435
8443
  /**
8436
8444
  * @param body The request body
8437
8445
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8447,10 +8455,9 @@ interface ChangeVariantRequestBuilder extends BaseRequestBuilder<ChangeVariantRe
8447
8455
  /**
8448
8456
  * @param body The request body
8449
8457
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8450
- * @returns {Promise<UntypedNode>}
8451
8458
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8452
8459
  */
8453
- put(body: CartItemChangeVariantRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8460
+ put(body: CartItemChangeVariantRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8454
8461
  /**
8455
8462
  * @param body The request body
8456
8463
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8466,10 +8473,9 @@ interface LinkModificationRequestBuilder extends BaseRequestBuilder<LinkModifica
8466
8473
  /**
8467
8474
  * @param body The request body
8468
8475
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8469
- * @returns {Promise<UntypedNode>}
8470
8476
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8471
8477
  */
8472
- put(body: UpdateLinkModificationRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8478
+ put(body: UpdateLinkModificationRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8473
8479
  /**
8474
8480
  * @param body The request body
8475
8481
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8505,18 +8511,16 @@ interface ItemsRequestBuilder extends BaseRequestBuilder<ItemsRequestBuilder> {
8505
8511
  /**
8506
8512
  * @param body The request body
8507
8513
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8508
- * @returns {Promise<UntypedNode>}
8509
8514
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8510
8515
  */
8511
- delete(body: CartDeleteItemRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8516
+ delete(body: CartDeleteItemRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8512
8517
  /**
8513
8518
  * @param body The request body
8514
8519
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8515
- * @returns {Promise<UntypedNode>}
8516
8520
  * @throws {ErrorResponse} error when the service returns a 400 status code
8517
8521
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8518
8522
  */
8519
- post(body: CartAddItemRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8523
+ post(body: CartAddItemRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8520
8524
  /**
8521
8525
  * @param body The request body
8522
8526
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8577,10 +8581,9 @@ interface DownloadRequestBuilderGetQueryParameters {
8577
8581
  interface SendEmailRequestBuilder$1 extends BaseRequestBuilder<SendEmailRequestBuilder$1> {
8578
8582
  /**
8579
8583
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8580
- * @returns {Promise<UntypedNode>}
8581
8584
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8582
8585
  */
8583
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8586
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8584
8587
  /**
8585
8588
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8586
8589
  * @returns {RequestInformation}
@@ -8594,10 +8597,9 @@ interface SendEmailRequestBuilder$1 extends BaseRequestBuilder<SendEmailRequestB
8594
8597
  interface SignRequestBuilder extends BaseRequestBuilder<SignRequestBuilder> {
8595
8598
  /**
8596
8599
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8597
- * @returns {Promise<UntypedNode>}
8598
8600
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8599
8601
  */
8600
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8602
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8601
8603
  /**
8602
8604
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8603
8605
  * @returns {RequestInformation}
@@ -8629,10 +8631,9 @@ interface SignWithImageRequestBuilder extends BaseRequestBuilder<SignWithImageRe
8629
8631
  /**
8630
8632
  * @param body The request body
8631
8633
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8632
- * @returns {Promise<UntypedNode>}
8633
8634
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8634
8635
  */
8635
- post(body: CartSignPreContractualInformationDocumentWithImageRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8636
+ post(body: CartSignPreContractualInformationDocumentWithImageRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8636
8637
  /**
8637
8638
  * @param body The request body
8638
8639
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8647,10 +8648,9 @@ interface SignWithImageRequestBuilder extends BaseRequestBuilder<SignWithImageRe
8647
8648
  interface UnSignRequestBuilder extends BaseRequestBuilder<UnSignRequestBuilder> {
8648
8649
  /**
8649
8650
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8650
- * @returns {Promise<UntypedNode>}
8651
8651
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8652
8652
  */
8653
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8653
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8654
8654
  /**
8655
8655
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8656
8656
  * @returns {RequestInformation}
@@ -8695,10 +8695,9 @@ interface ReopenRequestBuilder extends BaseRequestBuilder<ReopenRequestBuilder>
8695
8695
  /**
8696
8696
  * Reopen a finalized cart
8697
8697
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8698
- * @returns {Promise<UntypedNode>}
8699
8698
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8700
8699
  */
8701
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8700
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8702
8701
  /**
8703
8702
  * Reopen a finalized cart
8704
8703
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8713,10 +8712,9 @@ interface ReopenRequestBuilder extends BaseRequestBuilder<ReopenRequestBuilder>
8713
8712
  interface RequestApprovalRequestBuilder extends BaseRequestBuilder<RequestApprovalRequestBuilder> {
8714
8713
  /**
8715
8714
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8716
- * @returns {Promise<UntypedNode>}
8717
8715
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8718
8716
  */
8719
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8717
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8720
8718
  /**
8721
8719
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8722
8720
  * @returns {RequestInformation}
@@ -8730,10 +8728,9 @@ interface RequestApprovalRequestBuilder extends BaseRequestBuilder<RequestApprov
8730
8728
  interface SendDirectAccessLinkRequestBuilder extends BaseRequestBuilder<SendDirectAccessLinkRequestBuilder> {
8731
8729
  /**
8732
8730
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8733
- * @returns {Promise<UntypedNode>}
8734
8731
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8735
8732
  */
8736
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8733
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8737
8734
  /**
8738
8735
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8739
8736
  * @returns {RequestInformation}
@@ -8747,10 +8744,9 @@ interface SendDirectAccessLinkRequestBuilder extends BaseRequestBuilder<SendDire
8747
8744
  interface WithVoucherItemRequestBuilder extends BaseRequestBuilder<WithVoucherItemRequestBuilder> {
8748
8745
  /**
8749
8746
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8750
- * @returns {Promise<UntypedNode>}
8751
8747
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8752
8748
  */
8753
- delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8749
+ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8754
8750
  /**
8755
8751
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8756
8752
  * @returns {RequestInformation}
@@ -8771,11 +8767,10 @@ interface VouchersRequestBuilder$4 extends BaseRequestBuilder<VouchersRequestBui
8771
8767
  /**
8772
8768
  * @param body The request body
8773
8769
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8774
- * @returns {Promise<UntypedNode>}
8775
8770
  * @throws {ErrorResponse} error when the service returns a 400 status code
8776
8771
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8777
8772
  */
8778
- post(body: ApplyVoucherToCartRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8773
+ post(body: ApplyVoucherToCartRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8779
8774
  /**
8780
8775
  * @param body The request body
8781
8776
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8791,10 +8786,9 @@ interface WalletRequestBuilder extends BaseRequestBuilder<WalletRequestBuilder>
8791
8786
  /**
8792
8787
  * @param body The request body
8793
8788
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8794
- * @returns {Promise<UntypedNode>}
8795
8789
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8796
8790
  */
8797
- put(body: UpdateWalletAmountOnCartRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8791
+ put(body: UpdateWalletAmountOnCartRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8798
8792
  /**
8799
8793
  * @param body The request body
8800
8794
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -8965,10 +8959,9 @@ interface BulkStocksUpdateRequestBuilder extends BaseRequestBuilder<BulkStocksUp
8965
8959
  /**
8966
8960
  * @param body The request body
8967
8961
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8968
- * @returns {Promise<UntypedNode>}
8969
8962
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
8970
8963
  */
8971
- put(body: CatalogBulkStocksUpdateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
8964
+ put(body: CatalogBulkStocksUpdateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
8972
8965
  /**
8973
8966
  * @param body The request body
8974
8967
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9101,10 +9094,9 @@ interface WithReferenceItemRequestBuilder extends BaseRequestBuilder<WithReferen
9101
9094
  /**
9102
9095
  * @param body The request body
9103
9096
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9104
- * @returns {Promise<UntypedNode>}
9105
9097
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9106
9098
  */
9107
- put(body: UpsertProductRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9099
+ put(body: UpsertProductRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9108
9100
  /**
9109
9101
  * @param body The request body
9110
9102
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9151,10 +9143,9 @@ interface WithContextItemRequestBuilder extends BaseRequestBuilder<WithContextIt
9151
9143
  interface SyncSearchRequestBuilder extends BaseRequestBuilder<SyncSearchRequestBuilder> {
9152
9144
  /**
9153
9145
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9154
- * @returns {Promise<UntypedNode>}
9155
9146
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9156
9147
  */
9157
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9148
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9158
9149
  /**
9159
9150
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9160
9151
  * @returns {RequestInformation}
@@ -9229,10 +9220,9 @@ interface AddRequestBuilder extends BaseRequestBuilder<AddRequestBuilder> {
9229
9220
  /**
9230
9221
  * @param body The request body
9231
9222
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9232
- * @returns {Promise<UntypedNode>}
9233
9223
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9234
9224
  */
9235
- post(body: AddCustomClubActionRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9225
+ post(body: AddCustomClubActionRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9236
9226
  /**
9237
9227
  * @param body The request body
9238
9228
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9257,10 +9247,9 @@ interface CustomRequestBuilder extends BaseRequestBuilder<CustomRequestBuilder>
9257
9247
  interface FacebookRequestBuilder extends BaseRequestBuilder<FacebookRequestBuilder> {
9258
9248
  /**
9259
9249
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9260
- * @returns {Promise<UntypedNode>}
9261
9250
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9262
9251
  */
9263
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9252
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9264
9253
  /**
9265
9254
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9266
9255
  * @returns {RequestInformation}
@@ -9274,10 +9263,9 @@ interface FacebookRequestBuilder extends BaseRequestBuilder<FacebookRequestBuild
9274
9263
  interface InstagramRequestBuilder extends BaseRequestBuilder<InstagramRequestBuilder> {
9275
9264
  /**
9276
9265
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9277
- * @returns {Promise<UntypedNode>}
9278
9266
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9279
9267
  */
9280
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9268
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9281
9269
  /**
9282
9270
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9283
9271
  * @returns {RequestInformation}
@@ -9306,10 +9294,9 @@ interface SetBirthdateRequestBuilder extends BaseRequestBuilder<SetBirthdateRequ
9306
9294
  /**
9307
9295
  * @param body The request body
9308
9296
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9309
- * @returns {Promise<UntypedNode>}
9310
9297
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9311
9298
  */
9312
- post(body: SetBirthdateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9299
+ post(body: SetBirthdateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9313
9300
  /**
9314
9301
  * @param body The request body
9315
9302
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9457,10 +9444,9 @@ interface DelegateLeadsRequestBuilder extends BaseRequestBuilder<DelegateLeadsRe
9457
9444
  /**
9458
9445
  * @param body The request body
9459
9446
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9460
- * @returns {Promise<UntypedNode>}
9461
9447
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9462
9448
  */
9463
- post(body: CreateDelegateLeadRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9449
+ post(body: CreateDelegateLeadRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9464
9450
  /**
9465
9451
  * @param body The request body
9466
9452
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9574,10 +9560,9 @@ interface DelegatesRequestBuilder$4 extends BaseRequestBuilder<DelegatesRequestB
9574
9560
  /**
9575
9561
  * @param body The request body
9576
9562
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9577
- * @returns {Promise<UntypedNode>}
9578
9563
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9579
9564
  */
9580
- post(body: UpsertDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9565
+ post(body: UpsertDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9581
9566
  /**
9582
9567
  * @param body The request body
9583
9568
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9593,10 +9578,9 @@ interface CreateDummyRequestBuilder extends BaseRequestBuilder<CreateDummyReques
9593
9578
  /**
9594
9579
  * @param body The request body
9595
9580
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9596
- * @returns {Promise<UntypedNode>}
9597
9581
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9598
9582
  */
9599
- post(body: CreateDummyDemoRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9583
+ post(body: CreateDummyDemoRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9600
9584
  /**
9601
9585
  * @param body The request body
9602
9586
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9612,11 +9596,10 @@ interface AdditionalTurnoverRequestBuilder extends BaseRequestBuilder<Additional
9612
9596
  /**
9613
9597
  * @param body The request body
9614
9598
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9615
- * @returns {Promise<UntypedNode>}
9616
9599
  * @throws {ErrorResponse} error when the service returns a 400 status code
9617
9600
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9618
9601
  */
9619
- put(body: UpdateDemoAdditionalTurnOverRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9602
+ put(body: UpdateDemoAdditionalTurnOverRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9620
9603
  /**
9621
9604
  * @param body The request body
9622
9605
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9651,10 +9634,9 @@ interface AttendeeRequestBuilderGetQueryParameters {
9651
9634
  interface BecomeDelegateRequestBuilder$1 extends BaseRequestBuilder<BecomeDelegateRequestBuilder$1> {
9652
9635
  /**
9653
9636
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9654
- * @returns {Promise<UntypedNode>}
9655
9637
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9656
9638
  */
9657
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9639
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9658
9640
  /**
9659
9641
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9660
9642
  * @returns {RequestInformation}
@@ -9669,10 +9651,9 @@ interface SetDateRequestBuilder$1 extends BaseRequestBuilder<SetDateRequestBuild
9669
9651
  /**
9670
9652
  * @param body The request body
9671
9653
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9672
- * @returns {Promise<UntypedNode>}
9673
9654
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9674
9655
  */
9675
- put(body: SetBecomeHostessDemoDateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9656
+ put(body: SetBecomeHostessDemoDateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9676
9657
  /**
9677
9658
  * @param body The request body
9678
9659
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9691,10 +9672,9 @@ interface BecomeHostessRequestBuilder$1 extends BaseRequestBuilder<BecomeHostess
9691
9672
  get setDate(): SetDateRequestBuilder$1;
9692
9673
  /**
9693
9674
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9694
- * @returns {Promise<UntypedNode>}
9695
9675
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9696
9676
  */
9697
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9677
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9698
9678
  /**
9699
9679
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9700
9680
  * @returns {RequestInformation}
@@ -9708,10 +9688,9 @@ interface BecomeHostessRequestBuilder$1 extends BaseRequestBuilder<BecomeHostess
9708
9688
  interface CancelBecomeDelegateRequestBuilder$1 extends BaseRequestBuilder<CancelBecomeDelegateRequestBuilder$1> {
9709
9689
  /**
9710
9690
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9711
- * @returns {Promise<UntypedNode>}
9712
9691
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9713
9692
  */
9714
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9693
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9715
9694
  /**
9716
9695
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9717
9696
  * @returns {RequestInformation}
@@ -9725,10 +9704,9 @@ interface CancelBecomeDelegateRequestBuilder$1 extends BaseRequestBuilder<Cancel
9725
9704
  interface CancelBecomeHostessRequestBuilder$1 extends BaseRequestBuilder<CancelBecomeHostessRequestBuilder$1> {
9726
9705
  /**
9727
9706
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9728
- * @returns {Promise<UntypedNode>}
9729
9707
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9730
9708
  */
9731
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9709
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9732
9710
  /**
9733
9711
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9734
9712
  * @returns {RequestInformation}
@@ -9743,10 +9721,9 @@ interface CommentRequestBuilder$1 extends BaseRequestBuilder<CommentRequestBuild
9743
9721
  /**
9744
9722
  * @param body The request body
9745
9723
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9746
- * @returns {Promise<UntypedNode>}
9747
9724
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9748
9725
  */
9749
- put(body: AttendeeSetCommentRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9726
+ put(body: AttendeeSetCommentRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9750
9727
  /**
9751
9728
  * @param body The request body
9752
9729
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9762,10 +9739,9 @@ interface CouldBecomeDelegateRequestBuilder$1 extends BaseRequestBuilder<CouldBe
9762
9739
  /**
9763
9740
  * @param body The request body
9764
9741
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9765
- * @returns {Promise<UntypedNode>}
9766
9742
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9767
9743
  */
9768
- put(body: AttendeeSetCouldBecomeDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9744
+ put(body: AttendeeSetCouldBecomeDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9769
9745
  /**
9770
9746
  * @param body The request body
9771
9747
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9781,10 +9757,9 @@ interface CouldBecomeHostessRequestBuilder$1 extends BaseRequestBuilder<CouldBec
9781
9757
  /**
9782
9758
  * @param body The request body
9783
9759
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9784
- * @returns {Promise<UntypedNode>}
9785
9760
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9786
9761
  */
9787
- put(body: AttendeeSetCouldBecomeHostessRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9762
+ put(body: AttendeeSetCouldBecomeHostessRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9788
9763
  /**
9789
9764
  * @param body The request body
9790
9765
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9799,10 +9774,9 @@ interface CouldBecomeHostessRequestBuilder$1 extends BaseRequestBuilder<CouldBec
9799
9774
  interface SetAsHostessRequestBuilder extends BaseRequestBuilder<SetAsHostessRequestBuilder> {
9800
9775
  /**
9801
9776
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9802
- * @returns {Promise<UntypedNode>}
9803
9777
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9804
9778
  */
9805
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9779
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9806
9780
  /**
9807
9781
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9808
9782
  * @returns {RequestInformation}
@@ -9816,10 +9790,9 @@ interface SetAsHostessRequestBuilder extends BaseRequestBuilder<SetAsHostessRequ
9816
9790
  interface UnsetAsHostessRequestBuilder extends BaseRequestBuilder<UnsetAsHostessRequestBuilder> {
9817
9791
  /**
9818
9792
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9819
- * @returns {Promise<UntypedNode>}
9820
9793
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9821
9794
  */
9822
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9795
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9823
9796
  /**
9824
9797
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9825
9798
  * @returns {RequestInformation}
@@ -9834,10 +9807,9 @@ interface WillAttendRequestBuilder$1 extends BaseRequestBuilder<WillAttendReques
9834
9807
  /**
9835
9808
  * @param body The request body
9836
9809
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9837
- * @returns {Promise<UntypedNode>}
9838
9810
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9839
9811
  */
9840
- put(body: AttendeeSetWillAttendRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9812
+ put(body: AttendeeSetWillAttendRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9841
9813
  /**
9842
9814
  * @param body The request body
9843
9815
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -9966,10 +9938,9 @@ interface AttendeesRequestBuilder extends BaseRequestBuilder<AttendeesRequestBui
9966
9938
  interface BecomeDelegateRequestBuilder extends BaseRequestBuilder<BecomeDelegateRequestBuilder> {
9967
9939
  /**
9968
9940
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9969
- * @returns {Promise<UntypedNode>}
9970
9941
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9971
9942
  */
9972
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9943
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9973
9944
  /**
9974
9945
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9975
9946
  * @returns {RequestInformation}
@@ -9984,10 +9955,9 @@ interface SetDateRequestBuilder extends BaseRequestBuilder<SetDateRequestBuilder
9984
9955
  /**
9985
9956
  * @param body The request body
9986
9957
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
9987
- * @returns {Promise<UntypedNode>}
9988
9958
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
9989
9959
  */
9990
- put(body: SetBecomeHostessDemoDateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9960
+ put(body: SetBecomeHostessDemoDateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
9991
9961
  /**
9992
9962
  * @param body The request body
9993
9963
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10006,10 +9976,9 @@ interface BecomeHostessRequestBuilder extends BaseRequestBuilder<BecomeHostessRe
10006
9976
  get setDate(): SetDateRequestBuilder;
10007
9977
  /**
10008
9978
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10009
- * @returns {Promise<UntypedNode>}
10010
9979
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10011
9980
  */
10012
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9981
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10013
9982
  /**
10014
9983
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10015
9984
  * @returns {RequestInformation}
@@ -10023,10 +9992,9 @@ interface BecomeHostessRequestBuilder extends BaseRequestBuilder<BecomeHostessRe
10023
9992
  interface CancelBecomeDelegateRequestBuilder extends BaseRequestBuilder<CancelBecomeDelegateRequestBuilder> {
10024
9993
  /**
10025
9994
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10026
- * @returns {Promise<UntypedNode>}
10027
9995
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10028
9996
  */
10029
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
9997
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10030
9998
  /**
10031
9999
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10032
10000
  * @returns {RequestInformation}
@@ -10040,10 +10008,9 @@ interface CancelBecomeDelegateRequestBuilder extends BaseRequestBuilder<CancelBe
10040
10008
  interface CancelBecomeHostessRequestBuilder extends BaseRequestBuilder<CancelBecomeHostessRequestBuilder> {
10041
10009
  /**
10042
10010
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10043
- * @returns {Promise<UntypedNode>}
10044
10011
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10045
10012
  */
10046
- put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10013
+ put(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10047
10014
  /**
10048
10015
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10049
10016
  * @returns {RequestInformation}
@@ -10058,10 +10025,9 @@ interface CommentRequestBuilder extends BaseRequestBuilder<CommentRequestBuilder
10058
10025
  /**
10059
10026
  * @param body The request body
10060
10027
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10061
- * @returns {Promise<UntypedNode>}
10062
10028
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10063
10029
  */
10064
- put(body: UpdateDemoCommentRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10030
+ put(body: UpdateDemoCommentRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10065
10031
  /**
10066
10032
  * @param body The request body
10067
10033
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10077,10 +10043,9 @@ interface CouldBecomeDelegateRequestBuilder extends BaseRequestBuilder<CouldBeco
10077
10043
  /**
10078
10044
  * @param body The request body
10079
10045
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10080
- * @returns {Promise<UntypedNode>}
10081
10046
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10082
10047
  */
10083
- put(body: AttendeeSetCouldBecomeDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10048
+ put(body: AttendeeSetCouldBecomeDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10084
10049
  /**
10085
10050
  * @param body The request body
10086
10051
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10096,10 +10061,9 @@ interface CouldBecomeHostessRequestBuilder extends BaseRequestBuilder<CouldBecom
10096
10061
  /**
10097
10062
  * @param body The request body
10098
10063
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10099
- * @returns {Promise<UntypedNode>}
10100
10064
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10101
10065
  */
10102
- put(body: AttendeeSetCouldBecomeHostessRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10066
+ put(body: AttendeeSetCouldBecomeHostessRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10103
10067
  /**
10104
10068
  * @param body The request body
10105
10069
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10150,10 +10114,9 @@ interface HostessGiftsRequestBuilder extends BaseRequestBuilder<HostessGiftsRequ
10150
10114
  /**
10151
10115
  * @param body The request body
10152
10116
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10153
- * @returns {Promise<UntypedNode>}
10154
10117
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10155
10118
  */
10156
- put(body: SelectDemoHostessGiftRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10119
+ put(body: SelectDemoHostessGiftRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10157
10120
  /**
10158
10121
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10159
10122
  * @returns {RequestInformation}
@@ -10234,10 +10197,10 @@ interface HostessSurplusRequestBuilder extends BaseRequestBuilder<HostessSurplus
10234
10197
  interface WithFileNameItemRequestBuilder extends BaseRequestBuilder<WithFileNameItemRequestBuilder> {
10235
10198
  /**
10236
10199
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10237
- * @returns {Promise<string>}
10200
+ * @returns {Promise<ArrayBuffer>}
10238
10201
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10239
10202
  */
10240
- get(requestConfiguration?: RequestConfiguration<WithFileNameItemRequestBuilderGetQueryParameters> | undefined): Promise<string | undefined>;
10203
+ get(requestConfiguration?: RequestConfiguration<WithFileNameItemRequestBuilderGetQueryParameters> | undefined): Promise<ArrayBuffer | undefined>;
10241
10204
  /**
10242
10205
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10243
10206
  * @returns {RequestInformation}
@@ -10291,10 +10254,9 @@ interface InviteAttendeeRequestBuilder extends BaseRequestBuilder<InviteAttendee
10291
10254
  /**
10292
10255
  * @param body The request body
10293
10256
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10294
- * @returns {Promise<UntypedNode>}
10295
10257
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10296
10258
  */
10297
- post(body: InviteUserToDemoRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10259
+ post(body: InviteUserToDemoRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10298
10260
  /**
10299
10261
  * @param body The request body
10300
10262
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10309,10 +10271,9 @@ interface InviteAttendeeRequestBuilder extends BaseRequestBuilder<InviteAttendee
10309
10271
  interface JoinRequestBuilder extends BaseRequestBuilder<JoinRequestBuilder> {
10310
10272
  /**
10311
10273
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10312
- * @returns {Promise<UntypedNode>}
10313
10274
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10314
10275
  */
10315
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10276
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10316
10277
  /**
10317
10278
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10318
10279
  * @returns {RequestInformation}
@@ -10326,10 +10287,9 @@ interface JoinRequestBuilder extends BaseRequestBuilder<JoinRequestBuilder> {
10326
10287
  interface OpenRequestBuilder extends BaseRequestBuilder<OpenRequestBuilder> {
10327
10288
  /**
10328
10289
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10329
- * @returns {Promise<UntypedNode>}
10330
10290
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10331
10291
  */
10332
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10292
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10333
10293
  /**
10334
10294
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10335
10295
  * @returns {RequestInformation}
@@ -10408,10 +10368,9 @@ interface SummaryRequestBuilder extends BaseRequestBuilder<SummaryRequestBuilder
10408
10368
  interface SyncDelcomOrdersRequestBuilder extends BaseRequestBuilder<SyncDelcomOrdersRequestBuilder> {
10409
10369
  /**
10410
10370
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10411
- * @returns {Promise<UntypedNode>}
10412
10371
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10413
10372
  */
10414
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10373
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10415
10374
  /**
10416
10375
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10417
10376
  * @returns {RequestInformation}
@@ -10443,10 +10402,9 @@ interface WillAttendRequestBuilder extends BaseRequestBuilder<WillAttendRequestB
10443
10402
  /**
10444
10403
  * @param body The request body
10445
10404
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10446
- * @returns {Promise<UntypedNode>}
10447
10405
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10448
10406
  */
10449
- put(body: AttendeeSetWillAttendRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10407
+ put(body: AttendeeSetWillAttendRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10450
10408
  /**
10451
10409
  * @param body The request body
10452
10410
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10564,10 +10522,9 @@ interface WithDemoCodeOrItemRequestBuilder extends BaseRequestBuilder<WithDemoCo
10564
10522
  /**
10565
10523
  * @param body The request body
10566
10524
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10567
- * @returns {Promise<UntypedNode>}
10568
10525
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10569
10526
  */
10570
- put(body: UpdateDemoSettingsRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10527
+ put(body: UpdateDemoSettingsRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10571
10528
  /**
10572
10529
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10573
10530
  * @returns {RequestInformation}
@@ -10658,10 +10615,9 @@ interface DocumentAttachmentsRequestBuilder extends BaseRequestBuilder<DocumentA
10658
10615
  interface WithDocumentItemRequestBuilder extends BaseRequestBuilder<WithDocumentItemRequestBuilder> {
10659
10616
  /**
10660
10617
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10661
- * @returns {Promise<UntypedNode>}
10662
10618
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10663
10619
  */
10664
- delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10620
+ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10665
10621
  /**
10666
10622
  * @param body The request body
10667
10623
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10725,10 +10681,9 @@ interface SendEmailRequestBuilder extends BaseRequestBuilder<SendEmailRequestBui
10725
10681
  /**
10726
10682
  * @param body The request body
10727
10683
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10728
- * @returns {Promise<UntypedNode>}
10729
10684
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10730
10685
  */
10731
- post(body: SendEmailRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10686
+ post(body: SendEmailRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10732
10687
  /**
10733
10688
  * @param body The request body
10734
10689
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10753,17 +10708,15 @@ interface EmailsRequestBuilder extends BaseRequestBuilder<EmailsRequestBuilder>
10753
10708
  interface WithDemoCodeItemRequestBuilder extends BaseRequestBuilder<WithDemoCodeItemRequestBuilder> {
10754
10709
  /**
10755
10710
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10756
- * @returns {Promise<UntypedNode>}
10757
10711
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10758
10712
  */
10759
- delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10713
+ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10760
10714
  /**
10761
10715
  * @param body The request body
10762
10716
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10763
- * @returns {Promise<UntypedNode>}
10764
10717
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10765
10718
  */
10766
- put(body: UpsertDemoFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10719
+ put(body: UpsertDemoFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10767
10720
  /**
10768
10721
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10769
10722
  * @returns {RequestInformation}
@@ -10796,10 +10749,9 @@ interface WithOrderHumanItemRequestBuilder extends BaseRequestBuilder<WithOrderH
10796
10749
  /**
10797
10750
  * @param body The request body
10798
10751
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10799
- * @returns {Promise<UntypedNode>}
10800
10752
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10801
10753
  */
10802
- put(body: UpdateOrderStatusFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10754
+ put(body: UpdateOrderStatusFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10803
10755
  /**
10804
10756
  * @param body The request body
10805
10757
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10826,10 +10778,9 @@ interface OrdersRequestBuilder$1 extends BaseRequestBuilder<OrdersRequestBuilder
10826
10778
  interface AnonymizeRequestBuilder$1 extends BaseRequestBuilder<AnonymizeRequestBuilder$1> {
10827
10779
  /**
10828
10780
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10829
- * @returns {Promise<UntypedNode>}
10830
10781
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10831
10782
  */
10832
- get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10783
+ get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10833
10784
  /**
10834
10785
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10835
10786
  * @returns {RequestInformation}
@@ -10916,10 +10867,9 @@ interface RevokeRequestBuilder extends BaseRequestBuilder<RevokeRequestBuilder>
10916
10867
  /**
10917
10868
  * @param body The request body
10918
10869
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10919
- * @returns {Promise<UntypedNode>}
10920
10870
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10921
10871
  */
10922
- post(body: RevokeVoucherFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10872
+ post(body: RevokeVoucherFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10923
10873
  /**
10924
10874
  * @param body The request body
10925
10875
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10935,10 +10885,9 @@ interface UpdateExpirationDateRequestBuilder extends BaseRequestBuilder<UpdateEx
10935
10885
  /**
10936
10886
  * @param body The request body
10937
10887
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10938
- * @returns {Promise<UntypedNode>}
10939
10888
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10940
10889
  */
10941
- post(body: UpdateVoucherExpirationDateFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10890
+ post(body: UpdateVoucherExpirationDateFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10942
10891
  /**
10943
10892
  * @param body The request body
10944
10893
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -10966,10 +10915,9 @@ interface CodeItemRequestBuilder extends BaseRequestBuilder<CodeItemRequestBuild
10966
10915
  /**
10967
10916
  * @param body The request body
10968
10917
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10969
- * @returns {Promise<UntypedNode>}
10970
10918
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
10971
10919
  */
10972
- post(body: UpsertVoucherFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10920
+ post(body: UpsertVoucherFromFacadeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
10973
10921
  /**
10974
10922
  * @param body The request body
10975
10923
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11019,10 +10967,9 @@ interface BecomingDelegateRequestBuilder extends BaseRequestBuilder<BecomingDele
11019
10967
  /**
11020
10968
  * @param body The request body
11021
10969
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11022
- * @returns {Promise<UntypedNode>}
11023
10970
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11024
10971
  */
11025
- post(body: BecomingDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10972
+ post(body: BecomingDelegateRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11026
10973
  /**
11027
10974
  * @param body The request body
11028
10975
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11038,10 +10985,9 @@ interface BecomingHostessRequestBuilder extends BaseRequestBuilder<BecomingHoste
11038
10985
  /**
11039
10986
  * @param body The request body
11040
10987
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11041
- * @returns {Promise<UntypedNode>}
11042
10988
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11043
10989
  */
11044
- post(body: BecomingHostessRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
10990
+ post(body: BecomingHostessRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11045
10991
  /**
11046
10992
  * @param body The request body
11047
10993
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11057,10 +11003,9 @@ interface ContactRequestRequestBuilder extends BaseRequestBuilder<ContactRequest
11057
11003
  /**
11058
11004
  * @param body The request body
11059
11005
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11060
- * @returns {Promise<UntypedNode>}
11061
11006
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11062
11007
  */
11063
- post(body: ContactRequestRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11008
+ post(body: ContactRequestRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11064
11009
  /**
11065
11010
  * @param body The request body
11066
11011
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11127,10 +11072,9 @@ interface WithDelcomDemoItemRequestBuilder extends BaseRequestBuilder<WithDelcom
11127
11072
  /**
11128
11073
  * @param body The request body
11129
11074
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11130
- * @returns {Promise<UntypedNode>}
11131
11075
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11132
11076
  */
11133
- put(body: UpdateDemoFromIntranetRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11077
+ put(body: UpdateDemoFromIntranetRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11134
11078
  /**
11135
11079
  * @param body The request body
11136
11080
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11262,10 +11206,9 @@ interface DelegatesRequestBuilder$3 extends BaseRequestBuilder<DelegatesRequestB
11262
11206
  interface SetPendingRequestBuilder extends BaseRequestBuilder<SetPendingRequestBuilder> {
11263
11207
  /**
11264
11208
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11265
- * @returns {Promise<UntypedNode>}
11266
11209
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11267
11210
  */
11268
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11211
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11269
11212
  /**
11270
11213
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11271
11214
  * @returns {RequestInformation}
@@ -11453,10 +11396,9 @@ interface WithOrderItemRequestBuilder$1 extends BaseRequestBuilder<WithOrderItem
11453
11396
  /**
11454
11397
  * @param body The request body
11455
11398
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11456
- * @returns {Promise<UntypedNode>}
11457
11399
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11458
11400
  */
11459
- put(body: UseVoucherByCodeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11401
+ put(body: UseVoucherByCodeRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11460
11402
  /**
11461
11403
  * @param body The request body
11462
11404
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11585,10 +11527,9 @@ interface InvitationCodesRequestBuilder extends BaseRequestBuilder<InvitationCod
11585
11527
  interface ResendCodeRequestBuilder extends BaseRequestBuilder<ResendCodeRequestBuilder> {
11586
11528
  /**
11587
11529
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11588
- * @returns {Promise<UntypedNode>}
11589
11530
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11590
11531
  */
11591
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11532
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11592
11533
  /**
11593
11534
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11594
11535
  * @returns {RequestInformation}
@@ -11661,10 +11602,9 @@ interface SubscribeRequestBuilder$4 extends BaseRequestBuilder<SubscribeRequestB
11661
11602
  /**
11662
11603
  * @param body The request body
11663
11604
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11664
- * @returns {Promise<UntypedNode>}
11665
11605
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11666
11606
  */
11667
- post(body: NewsletterSubscriptionRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11607
+ post(body: NewsletterSubscriptionRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11668
11608
  /**
11669
11609
  * @param body The request body
11670
11610
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11690,10 +11630,9 @@ interface ApproveRequestBuilder extends BaseRequestBuilder<ApproveRequestBuilder
11690
11630
  /**
11691
11631
  * Used by the delegate to accept the responsibility of the payment. Cart linked to the payment would go from PendingPayment to Finalized
11692
11632
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11693
- * @returns {Promise<UntypedNode>}
11694
11633
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11695
11634
  */
11696
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11635
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11697
11636
  /**
11698
11637
  * Used by the delegate to accept the responsibility of the payment. Cart linked to the payment would go from PendingPayment to Finalized
11699
11638
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11728,10 +11667,9 @@ interface SetAsCancelledRequestBuilder extends BaseRequestBuilder<SetAsCancelled
11728
11667
  /**
11729
11668
  * Used by the system to set a payment to cancelled status.
11730
11669
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11731
- * @returns {Promise<UntypedNode>}
11732
11670
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11733
11671
  */
11734
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11672
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11735
11673
  /**
11736
11674
  * Used by the system to set a payment to cancelled status.
11737
11675
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11816,10 +11754,9 @@ interface Delegate_connectionRequestBuilder extends BaseRequestBuilder<Delegate_
11816
11754
  interface SubscribeRequestBuilder$3 extends BaseRequestBuilder<SubscribeRequestBuilder$3> {
11817
11755
  /**
11818
11756
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11819
- * @returns {Promise<UntypedNode>}
11820
11757
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11821
11758
  */
11822
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11759
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11823
11760
  /**
11824
11761
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11825
11762
  * @returns {RequestInformation}
@@ -11833,10 +11770,9 @@ interface SubscribeRequestBuilder$3 extends BaseRequestBuilder<SubscribeRequestB
11833
11770
  interface UnSubscribeRequestBuilder$3 extends BaseRequestBuilder<UnSubscribeRequestBuilder$3> {
11834
11771
  /**
11835
11772
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11836
- * @returns {Promise<UntypedNode>}
11837
11773
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11838
11774
  */
11839
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11775
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11840
11776
  /**
11841
11777
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11842
11778
  * @returns {RequestInformation}
@@ -11877,10 +11813,9 @@ interface SubscribeRequestBuilder$2 extends BaseRequestBuilder<SubscribeRequestB
11877
11813
  /**
11878
11814
  * @param body The request body
11879
11815
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11880
- * @returns {Promise<UntypedNode>}
11881
11816
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11882
11817
  */
11883
- post(body: GdprSubscribeTransactionalRequest2, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11818
+ post(body: GdprSubscribeTransactionalRequest2, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11884
11819
  /**
11885
11820
  * @param body The request body
11886
11821
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -11895,10 +11830,9 @@ interface SubscribeRequestBuilder$2 extends BaseRequestBuilder<SubscribeRequestB
11895
11830
  interface UnSubscribeRequestBuilder$2 extends BaseRequestBuilder<UnSubscribeRequestBuilder$2> {
11896
11831
  /**
11897
11832
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11898
- * @returns {Promise<UntypedNode>}
11899
11833
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
11900
11834
  */
11901
- post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
11835
+ post(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
11902
11836
  /**
11903
11837
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
11904
11838
  * @returns {RequestInformation}
@@ -12067,10 +12001,9 @@ interface TaxonomyRequestBuilder extends BaseRequestBuilder<TaxonomyRequestBuild
12067
12001
  /**
12068
12002
  * @param body The request body
12069
12003
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12070
- * @returns {Promise<UntypedNode>}
12071
12004
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12072
12005
  */
12073
- put(body: UpdateTaxonomyRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12006
+ put(body: UpdateTaxonomyRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12074
12007
  /**
12075
12008
  * @param body The request body
12076
12009
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -12105,10 +12038,9 @@ interface AdvantagesRequestBuilderGetQueryParameters {
12105
12038
  interface AnonymizeRequestBuilder extends BaseRequestBuilder<AnonymizeRequestBuilder> {
12106
12039
  /**
12107
12040
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12108
- * @returns {Promise<UntypedNode>}
12109
12041
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12110
12042
  */
12111
- get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12043
+ get(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12112
12044
  /**
12113
12045
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12114
12046
  * @returns {RequestInformation}
@@ -12269,11 +12201,10 @@ interface EmailRequestBuilder extends BaseRequestBuilder<EmailRequestBuilder> {
12269
12201
  /**
12270
12202
  * @param body The request body
12271
12203
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12272
- * @returns {Promise<UntypedNode>}
12273
12204
  * @throws {ErrorResponse} error when the service returns a 400 status code
12274
12205
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12275
12206
  */
12276
- put(body: UpdateUserEmailRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12207
+ put(body: UpdateUserEmailRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12277
12208
  /**
12278
12209
  * @param body The request body
12279
12210
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -12307,10 +12238,9 @@ interface SubscribeRequestBuilder$1 extends BaseRequestBuilder<SubscribeRequestB
12307
12238
  * @param body Binary request body
12308
12239
  * @param contentType The request body content type.
12309
12240
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12310
- * @returns {Promise<UntypedNode>}
12311
12241
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12312
12242
  */
12313
- post(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12243
+ post(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12314
12244
  /**
12315
12245
  * @param body Binary request body
12316
12246
  * @param contentType The request body content type.
@@ -12328,10 +12258,9 @@ interface UnSubscribeRequestBuilder$1 extends BaseRequestBuilder<UnSubscribeRequ
12328
12258
  * @param body Binary request body
12329
12259
  * @param contentType The request body content type.
12330
12260
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12331
- * @returns {Promise<UntypedNode>}
12332
12261
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12333
12262
  */
12334
- post(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12263
+ post(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12335
12264
  /**
12336
12265
  * @param body Binary request body
12337
12266
  * @param contentType The request body content type.
@@ -12374,10 +12303,9 @@ interface SubscribeRequestBuilder extends BaseRequestBuilder<SubscribeRequestBui
12374
12303
  /**
12375
12304
  * @param body The request body
12376
12305
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12377
- * @returns {Promise<UntypedNode>}
12378
12306
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12379
12307
  */
12380
- post(body: GdprSubscribeTransactionalRequest2, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12308
+ post(body: GdprSubscribeTransactionalRequest2, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12381
12309
  /**
12382
12310
  * @param body The request body
12383
12311
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -12394,10 +12322,9 @@ interface UnSubscribeRequestBuilder extends BaseRequestBuilder<UnSubscribeReques
12394
12322
  * @param body Binary request body
12395
12323
  * @param contentType The request body content type.
12396
12324
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12397
- * @returns {Promise<UntypedNode>}
12398
12325
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12399
12326
  */
12400
- post(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12327
+ post(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12401
12328
  /**
12402
12329
  * @param body Binary request body
12403
12330
  * @param contentType The request body content type.
@@ -12523,11 +12450,10 @@ interface ProfileRequestBuilder$1 extends BaseRequestBuilder<ProfileRequestBuild
12523
12450
  /**
12524
12451
  * @param body The request body
12525
12452
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12526
- * @returns {Promise<UntypedNode>}
12527
12453
  * @throws {ErrorResponse} error when the service returns a 400 status code
12528
12454
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12529
12455
  */
12530
- put(body: UpdateUserProfileRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12456
+ put(body: UpdateUserProfileRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12531
12457
  /**
12532
12458
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12533
12459
  * @returns {RequestInformation}
@@ -12619,10 +12545,9 @@ interface WishlistRequestBuilder$1 extends BaseRequestBuilder<WishlistRequestBui
12619
12545
  /**
12620
12546
  * @param body The request body
12621
12547
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12622
- * @returns {Promise<UntypedNode>}
12623
12548
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12624
12549
  */
12625
- delete(body: DeleteFromWishlistRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12550
+ delete(body: DeleteFromWishlistRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12626
12551
  /**
12627
12552
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12628
12553
  * @returns {Promise<WishlistResponse>}
@@ -12632,10 +12557,9 @@ interface WishlistRequestBuilder$1 extends BaseRequestBuilder<WishlistRequestBui
12632
12557
  /**
12633
12558
  * @param body The request body
12634
12559
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12635
- * @returns {Promise<UntypedNode>}
12636
12560
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12637
12561
  */
12638
- post(body: AddToWishlistRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12562
+ post(body: AddToWishlistRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12639
12563
  /**
12640
12564
  * @param body The request body
12641
12565
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -12811,11 +12735,10 @@ interface ProfileRequestBuilder extends BaseRequestBuilder<ProfileRequestBuilder
12811
12735
  /**
12812
12736
  * @param body The request body
12813
12737
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12814
- * @returns {Promise<UntypedNode>}
12815
12738
  * @throws {ErrorResponse} error when the service returns a 400 status code
12816
12739
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12817
12740
  */
12818
- put(body: UpdateUserProfileRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12741
+ put(body: UpdateUserProfileRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12819
12742
  /**
12820
12743
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12821
12744
  * @returns {RequestInformation}
@@ -12836,10 +12759,9 @@ interface WishlistRequestBuilder extends BaseRequestBuilder<WishlistRequestBuild
12836
12759
  /**
12837
12760
  * @param body The request body
12838
12761
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12839
- * @returns {Promise<UntypedNode>}
12840
12762
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12841
12763
  */
12842
- delete(body: DeleteFromWishlistRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12764
+ delete(body: DeleteFromWishlistRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12843
12765
  /**
12844
12766
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12845
12767
  * @returns {Promise<WishlistResponse>}
@@ -12849,10 +12771,9 @@ interface WishlistRequestBuilder extends BaseRequestBuilder<WishlistRequestBuild
12849
12771
  /**
12850
12772
  * @param body The request body
12851
12773
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12852
- * @returns {Promise<UntypedNode>}
12853
12774
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12854
12775
  */
12855
- post(body: AddToWishlistRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12776
+ post(body: AddToWishlistRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12856
12777
  /**
12857
12778
  * @param body The request body
12858
12779
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -12911,10 +12832,9 @@ interface UsersRequestBuilder extends BaseRequestBuilder<UsersRequestBuilder> {
12911
12832
  /**
12912
12833
  * @param body The request body
12913
12834
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12914
- * @returns {Promise<UntypedNode>}
12915
12835
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12916
12836
  */
12917
- post(body: UpsertUserRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12837
+ post(body: UpsertUserRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12918
12838
  /**
12919
12839
  * @param body The request body
12920
12840
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -12929,10 +12849,10 @@ interface UsersRequestBuilder extends BaseRequestBuilder<UsersRequestBuilder> {
12929
12849
  interface GetQrcodeEpcRequestBuilder extends BaseRequestBuilder<GetQrcodeEpcRequestBuilder> {
12930
12850
  /**
12931
12851
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12932
- * @returns {Promise<string>}
12852
+ * @returns {Promise<ArrayBuffer>}
12933
12853
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12934
12854
  */
12935
- get(requestConfiguration?: RequestConfiguration<GetQrcodeEpcRequestBuilderGetQueryParameters> | undefined): Promise<string | undefined>;
12855
+ get(requestConfiguration?: RequestConfiguration<GetQrcodeEpcRequestBuilderGetQueryParameters> | undefined): Promise<ArrayBuffer | undefined>;
12936
12856
  /**
12937
12857
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12938
12858
  * @returns {RequestInformation}
@@ -12963,10 +12883,9 @@ interface LogsRequestBuilder extends BaseRequestBuilder<LogsRequestBuilder> {
12963
12883
  * @param body Binary request body
12964
12884
  * @param contentType The request body content type.
12965
12885
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12966
- * @returns {Promise<UntypedNode>}
12967
12886
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12968
12887
  */
12969
- post(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12888
+ post(body: ArrayBuffer | undefined, contentType: string | undefined, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12970
12889
  /**
12971
12890
  * @param body Binary request body
12972
12891
  * @param contentType The request body content type.
@@ -12983,10 +12902,9 @@ interface UpdateRequestBuilder$1 extends BaseRequestBuilder<UpdateRequestBuilder
12983
12902
  /**
12984
12903
  * @param body The request body
12985
12904
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
12986
- * @returns {Promise<UntypedNode>}
12987
12905
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
12988
12906
  */
12989
- post(body: LyfPayPaymentUpdatedWebhookRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12907
+ post(body: LyfPayPaymentUpdatedWebhookRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
12990
12908
  /**
12991
12909
  * @param body The request body
12992
12910
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -13012,10 +12930,9 @@ interface UpdateRequestBuilder extends BaseRequestBuilder<UpdateRequestBuilder>
13012
12930
  /**
13013
12931
  * @param body The request body
13014
12932
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
13015
- * @returns {Promise<UntypedNode>}
13016
12933
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
13017
12934
  */
13018
- post(body: MolliePaymentUpdatedWebhookRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12935
+ post(body: MolliePaymentUpdatedWebhookRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13019
12936
  /**
13020
12937
  * @param body The request body
13021
12938
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
@@ -13055,10 +12972,9 @@ interface CreateRequestBuilder extends BaseRequestBuilder<CreateRequestBuilder>
13055
12972
  /**
13056
12973
  * @param body The request body
13057
12974
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
13058
- * @returns {Promise<UntypedNode>}
13059
12975
  * @throws {DomainExceptionResponse} error when the service returns a 422 status code
13060
12976
  */
13061
- post(body: CreateOnlineUserRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UntypedNode | undefined>;
12977
+ post(body: CreateOnlineUserRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13062
12978
  /**
13063
12979
  * @param body The request body
13064
12980
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.