@victoria-company/agora-client 1.0.202505211409 → 1.0.202505230916

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.
@@ -1290,6 +1290,10 @@ export declare function createCreateOnlineUserRequestFromDiscriminatorValue(pars
1290
1290
  */
1291
1291
  export declare function createDelegateConnectionResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
1292
1292
  export interface CreateDelegateLeadRequest extends Parsable {
1293
+ /**
1294
+ * The address property
1295
+ */
1296
+ address?: string | null;
1293
1297
  /**
1294
1298
  * The contactTimeFrame property
1295
1299
  */
@@ -1354,6 +1358,10 @@ export interface CreateDelegateLeadRequest extends Parsable {
1354
1358
  * The phone property
1355
1359
  */
1356
1360
  phone?: string | null;
1361
+ /**
1362
+ * The professionalActivity property
1363
+ */
1364
+ professionalActivity?: number | null;
1357
1365
  /**
1358
1366
  * The reasonToJoin property
1359
1367
  */
@@ -1362,10 +1370,6 @@ export interface CreateDelegateLeadRequest extends Parsable {
1362
1370
  * The referralId property
1363
1371
  */
1364
1372
  referralId?: number | null;
1365
- /**
1366
- * The street property
1367
- */
1368
- street?: string | null;
1369
1373
  /**
1370
1374
  * The subscribeToNewsletter property
1371
1375
  */
@@ -2752,6 +2752,7 @@ exports.deserializeIntoCreateClubVoucherRequest = deserializeIntoCreateClubVouch
2752
2752
  // @ts-ignore
2753
2753
  function deserializeIntoCreateDelegateLeadRequest(createDelegateLeadRequest = {}) {
2754
2754
  return {
2755
+ "address": n => { createDelegateLeadRequest.address = n.getStringValue(); },
2755
2756
  "contactTimeFrame": n => { createDelegateLeadRequest.contactTimeFrame = n.getNumberValue(); },
2756
2757
  "contextId": n => { createDelegateLeadRequest.contextId = n.getNumberValue(); },
2757
2758
  "countryCode": n => { createDelegateLeadRequest.countryCode = n.getStringValue(); },
@@ -2768,9 +2769,9 @@ function deserializeIntoCreateDelegateLeadRequest(createDelegateLeadRequest = {}
2768
2769
  "locality": n => { createDelegateLeadRequest.locality = n.getStringValue(); },
2769
2770
  "optin": n => { createDelegateLeadRequest.optin = n.getBooleanValue(); },
2770
2771
  "phone": n => { createDelegateLeadRequest.phone = n.getStringValue(); },
2772
+ "professionalActivity": n => { createDelegateLeadRequest.professionalActivity = n.getNumberValue(); },
2771
2773
  "reasonToJoin": n => { createDelegateLeadRequest.reasonToJoin = n.getNumberValue(); },
2772
2774
  "referralId": n => { createDelegateLeadRequest.referralId = n.getNumberValue(); },
2773
- "street": n => { createDelegateLeadRequest.street = n.getStringValue(); },
2774
2775
  "subscribeToNewsletter": n => { createDelegateLeadRequest.subscribeToNewsletter = n.getBooleanValue(); },
2775
2776
  "utmCampaign": n => { createDelegateLeadRequest.utmCampaign = n.getStringValue(); },
2776
2777
  "utmMedium": n => { createDelegateLeadRequest.utmMedium = n.getStringValue(); },
@@ -5859,6 +5860,7 @@ exports.serializeCreateClubVoucherRequest = serializeCreateClubVoucherRequest;
5859
5860
  // @ts-ignore
5860
5861
  function serializeCreateDelegateLeadRequest(writer, createDelegateLeadRequest = {}) {
5861
5862
  if (createDelegateLeadRequest) {
5863
+ writer.writeStringValue("address", createDelegateLeadRequest.address);
5862
5864
  writer.writeNumberValue("contactTimeFrame", createDelegateLeadRequest.contactTimeFrame);
5863
5865
  writer.writeNumberValue("contextId", createDelegateLeadRequest.contextId);
5864
5866
  writer.writeStringValue("countryCode", createDelegateLeadRequest.countryCode);
@@ -5875,9 +5877,9 @@ function serializeCreateDelegateLeadRequest(writer, createDelegateLeadRequest =
5875
5877
  writer.writeStringValue("locality", createDelegateLeadRequest.locality);
5876
5878
  writer.writeBooleanValue("optin", createDelegateLeadRequest.optin);
5877
5879
  writer.writeStringValue("phone", createDelegateLeadRequest.phone);
5880
+ writer.writeNumberValue("professionalActivity", createDelegateLeadRequest.professionalActivity);
5878
5881
  writer.writeNumberValue("reasonToJoin", createDelegateLeadRequest.reasonToJoin);
5879
5882
  writer.writeNumberValue("referralId", createDelegateLeadRequest.referralId);
5880
- writer.writeStringValue("street", createDelegateLeadRequest.street);
5881
5883
  writer.writeBooleanValue("subscribeToNewsletter", createDelegateLeadRequest.subscribeToNewsletter);
5882
5884
  writer.writeStringValue("utmCampaign", createDelegateLeadRequest.utmCampaign);
5883
5885
  writer.writeStringValue("utmMedium", createDelegateLeadRequest.utmMedium);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@victoria-company/agora-client",
3
- "version": "1.0.202505211409",
3
+ "version": "1.0.202505230916",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",