@connectedxm/admin 3.3.5 → 3.3.7

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
@@ -1471,6 +1471,8 @@ interface Organization extends BaseOrganization {
1471
1471
  requireCompany: boolean;
1472
1472
  requirePhone: boolean;
1473
1473
  requireTitle: boolean;
1474
+ requestInternalRefId: boolean;
1475
+ internalRefIdName: string | null;
1474
1476
  authLayout: AuthLayout;
1475
1477
  defaultAuthAction: DefaultAuthAction;
1476
1478
  userPoolId: string | null;
@@ -2115,7 +2117,6 @@ interface BaseEventSessionLocation {
2115
2117
  name: string;
2116
2118
  }
2117
2119
  interface EventSessionLocation extends BaseEventSessionLocation {
2118
- googlePlaceId: string | null;
2119
2120
  description: string | null;
2120
2121
  address1: string | null;
2121
2122
  address2: string | null;
@@ -4376,7 +4377,6 @@ interface EventSessionUpdateInputs {
4376
4377
  }
4377
4378
  interface EventSessionLocationCreateInputs {
4378
4379
  name: string;
4379
- googlePlaceId?: string | null;
4380
4380
  description?: string | null;
4381
4381
  imageId?: string | null;
4382
4382
  address1?: string | null;
@@ -4392,7 +4392,6 @@ interface EventSessionLocationTranslationUpdateInputs {
4392
4392
  }
4393
4393
  interface EventSessionLocationUpdateInputs {
4394
4394
  name?: string;
4395
- googlePlaceId?: string | null;
4396
4395
  description?: string | null;
4397
4396
  imageId?: string | null;
4398
4397
  address1?: string | null;
@@ -4786,6 +4785,8 @@ interface OrganizationUpdateInputs {
4786
4785
  requirePhone?: boolean;
4787
4786
  requireTitle?: boolean;
4788
4787
  requireCompany?: boolean;
4788
+ requestInternalRefId?: boolean;
4789
+ internalRefIdName?: string | null;
4789
4790
  iosAppLink?: string | null;
4790
4791
  androidAppLink?: string | null;
4791
4792
  appIconId?: string | null;
package/dist/index.d.ts CHANGED
@@ -1471,6 +1471,8 @@ interface Organization extends BaseOrganization {
1471
1471
  requireCompany: boolean;
1472
1472
  requirePhone: boolean;
1473
1473
  requireTitle: boolean;
1474
+ requestInternalRefId: boolean;
1475
+ internalRefIdName: string | null;
1474
1476
  authLayout: AuthLayout;
1475
1477
  defaultAuthAction: DefaultAuthAction;
1476
1478
  userPoolId: string | null;
@@ -2115,7 +2117,6 @@ interface BaseEventSessionLocation {
2115
2117
  name: string;
2116
2118
  }
2117
2119
  interface EventSessionLocation extends BaseEventSessionLocation {
2118
- googlePlaceId: string | null;
2119
2120
  description: string | null;
2120
2121
  address1: string | null;
2121
2122
  address2: string | null;
@@ -4376,7 +4377,6 @@ interface EventSessionUpdateInputs {
4376
4377
  }
4377
4378
  interface EventSessionLocationCreateInputs {
4378
4379
  name: string;
4379
- googlePlaceId?: string | null;
4380
4380
  description?: string | null;
4381
4381
  imageId?: string | null;
4382
4382
  address1?: string | null;
@@ -4392,7 +4392,6 @@ interface EventSessionLocationTranslationUpdateInputs {
4392
4392
  }
4393
4393
  interface EventSessionLocationUpdateInputs {
4394
4394
  name?: string;
4395
- googlePlaceId?: string | null;
4396
4395
  description?: string | null;
4397
4396
  imageId?: string | null;
4398
4397
  address1?: string | null;
@@ -4786,6 +4785,8 @@ interface OrganizationUpdateInputs {
4786
4785
  requirePhone?: boolean;
4787
4786
  requireTitle?: boolean;
4788
4787
  requireCompany?: boolean;
4788
+ requestInternalRefId?: boolean;
4789
+ internalRefIdName?: string | null;
4789
4790
  iosAppLink?: string | null;
4790
4791
  androidAppLink?: string | null;
4791
4792
  appIconId?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "3.3.5",
3
+ "version": "3.3.7",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",