@victoria-company/agora-client 1.0.202510291335 → 1.0.202510301246
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.cjs +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -48,6 +48,7 @@ __export(index_exports, {
|
|
|
48
48
|
GdprOptInStatusObject: () => GdprOptInStatusObject,
|
|
49
49
|
GenderObject: () => GenderObject,
|
|
50
50
|
GiftCategoryObject: () => GiftCategoryObject,
|
|
51
|
+
GrantTypeObject: () => GrantTypeObject,
|
|
51
52
|
KitTypeObject: () => KitTypeObject,
|
|
52
53
|
LyfPayPaymentUpdatedWebhookRequest_BillDto_LyfPayPaymentStatusObject: () => LyfPayPaymentUpdatedWebhookRequest_BillDto_LyfPayPaymentStatusObject,
|
|
53
54
|
MyVictoriaCertificationObject: () => MyVictoriaCertificationObject,
|
|
@@ -3747,6 +3748,9 @@ function deserializeIntoGetDelegateGrantsResponse_DelegateGrantResponse(getDeleg
|
|
|
3747
3748
|
"grant": (n) => {
|
|
3748
3749
|
getDelegateGrantsResponse_DelegateGrantResponse.grant = n.getStringValue();
|
|
3749
3750
|
},
|
|
3751
|
+
"grantType": (n) => {
|
|
3752
|
+
getDelegateGrantsResponse_DelegateGrantResponse.grantType = n.getEnumValue(GrantTypeObject);
|
|
3753
|
+
},
|
|
3750
3754
|
"isDefault": (n) => {
|
|
3751
3755
|
getDelegateGrantsResponse_DelegateGrantResponse.isDefault = n.getBooleanValue();
|
|
3752
3756
|
}
|
|
@@ -3952,6 +3956,9 @@ function deserializeIntoGetUserGrantsResponse_DelegateGrantResponse(getUserGrant
|
|
|
3952
3956
|
"delegateId": (n) => {
|
|
3953
3957
|
getUserGrantsResponse_DelegateGrantResponse.delegateId = n.getStringValue();
|
|
3954
3958
|
},
|
|
3959
|
+
"grantType": (n) => {
|
|
3960
|
+
getUserGrantsResponse_DelegateGrantResponse.grantType = n.getEnumValue(GrantTypeObject);
|
|
3961
|
+
},
|
|
3955
3962
|
"isDefault": (n) => {
|
|
3956
3963
|
getUserGrantsResponse_DelegateGrantResponse.isDefault = n.getBooleanValue();
|
|
3957
3964
|
}
|
|
@@ -5329,6 +5336,9 @@ function deserializeIntoUpsertDelegateRequest(upsertDelegateRequest = {}) {
|
|
|
5329
5336
|
"firstname": (n) => {
|
|
5330
5337
|
upsertDelegateRequest.firstname = n.getStringValue();
|
|
5331
5338
|
},
|
|
5339
|
+
"grantType": (n) => {
|
|
5340
|
+
upsertDelegateRequest.grantType = n.getEnumValue(GrantTypeObject);
|
|
5341
|
+
},
|
|
5332
5342
|
"isActive": (n) => {
|
|
5333
5343
|
upsertDelegateRequest.isActive = n.getBooleanValue();
|
|
5334
5344
|
},
|
|
@@ -6830,6 +6840,7 @@ function serializeGetDelegateGrantsResponse(writer, getDelegateGrantsResponse =
|
|
|
6830
6840
|
function serializeGetDelegateGrantsResponse_DelegateGrantResponse(writer, getDelegateGrantsResponse_DelegateGrantResponse = {}) {
|
|
6831
6841
|
if (getDelegateGrantsResponse_DelegateGrantResponse) {
|
|
6832
6842
|
writer.writeStringValue("grant", getDelegateGrantsResponse_DelegateGrantResponse.grant);
|
|
6843
|
+
writer.writeEnumValue("grantType", getDelegateGrantsResponse_DelegateGrantResponse.grantType);
|
|
6833
6844
|
writer.writeBooleanValue("isDefault", getDelegateGrantsResponse_DelegateGrantResponse.isDefault);
|
|
6834
6845
|
}
|
|
6835
6846
|
}
|
|
@@ -6958,6 +6969,7 @@ function serializeGetUserGrantsResponse(writer, getUserGrantsResponse = {}) {
|
|
|
6958
6969
|
function serializeGetUserGrantsResponse_DelegateGrantResponse(writer, getUserGrantsResponse_DelegateGrantResponse = {}) {
|
|
6959
6970
|
if (getUserGrantsResponse_DelegateGrantResponse) {
|
|
6960
6971
|
writer.writeStringValue("delegateId", getUserGrantsResponse_DelegateGrantResponse.delegateId);
|
|
6972
|
+
writer.writeEnumValue("grantType", getUserGrantsResponse_DelegateGrantResponse.grantType);
|
|
6961
6973
|
writer.writeBooleanValue("isDefault", getUserGrantsResponse_DelegateGrantResponse.isDefault);
|
|
6962
6974
|
}
|
|
6963
6975
|
}
|
|
@@ -7608,6 +7620,7 @@ function serializeUpsertDelegateRequest(writer, upsertDelegateRequest = {}) {
|
|
|
7608
7620
|
writer.writeStringValue("eShopId", upsertDelegateRequest.eShopId);
|
|
7609
7621
|
writer.writeStringValue("eShopPitch", upsertDelegateRequest.eShopPitch);
|
|
7610
7622
|
writer.writeStringValue("firstname", upsertDelegateRequest.firstname);
|
|
7623
|
+
writer.writeEnumValue("grantType", upsertDelegateRequest.grantType);
|
|
7611
7624
|
writer.writeBooleanValue("isActive", upsertDelegateRequest.isActive);
|
|
7612
7625
|
writer.writeStringValue("lastname", upsertDelegateRequest.lastname);
|
|
7613
7626
|
writer.writeStringValue("locale", upsertDelegateRequest.locale);
|
|
@@ -7971,6 +7984,10 @@ var GiftCategoryObject = {
|
|
|
7971
7984
|
Gift2: "Gift2",
|
|
7972
7985
|
Gift3: "Gift3"
|
|
7973
7986
|
};
|
|
7987
|
+
var GrantTypeObject = {
|
|
7988
|
+
All: "All",
|
|
7989
|
+
MyVictoria: "MyVictoria"
|
|
7990
|
+
};
|
|
7974
7991
|
var KitTypeObject = {
|
|
7975
7992
|
Full: "Full",
|
|
7976
7993
|
A: "A",
|
|
@@ -12872,6 +12889,7 @@ var AgoraClientNavigationMetadata = {
|
|
|
12872
12889
|
GdprOptInStatusObject,
|
|
12873
12890
|
GenderObject,
|
|
12874
12891
|
GiftCategoryObject,
|
|
12892
|
+
GrantTypeObject,
|
|
12875
12893
|
KitTypeObject,
|
|
12876
12894
|
LyfPayPaymentUpdatedWebhookRequest_BillDto_LyfPayPaymentStatusObject,
|
|
12877
12895
|
MyVictoriaCertificationObject,
|