@memberjunction/core-entities 2.11.0 → 2.12.0
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.
|
@@ -1279,7 +1279,7 @@ export declare const CompanyIntegrationRunSchema: z.ZodObject<{
|
|
|
1279
1279
|
Comments: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1280
1280
|
__mj_CreatedAt: z.ZodDate;
|
|
1281
1281
|
__mj_UpdatedAt: z.ZodDate;
|
|
1282
|
-
Status: z.ZodUnion<[z.ZodLiteral<"
|
|
1282
|
+
Status: z.ZodUnion<[z.ZodLiteral<"Pending">, z.ZodLiteral<"In Progress">, z.ZodLiteral<"Success">, z.ZodLiteral<"Failed">]>;
|
|
1283
1283
|
ErrorLog: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1284
1284
|
ConfigData: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1285
1285
|
Integration: z.ZodString;
|
|
@@ -3880,7 +3880,7 @@ export declare const ListDetailSchema: z.ZodObject<{
|
|
|
3880
3880
|
Sequence: z.ZodNumber;
|
|
3881
3881
|
__mj_CreatedAt: z.ZodDate;
|
|
3882
3882
|
__mj_UpdatedAt: z.ZodDate;
|
|
3883
|
-
Status: z.ZodUnion<[z.ZodLiteral<"
|
|
3883
|
+
Status: z.ZodUnion<[z.ZodLiteral<"Active">, z.ZodLiteral<"Rejected">, z.ZodLiteral<"Disabled">, z.ZodLiteral<"Complete">, z.ZodLiteral<"Pending">, z.ZodLiteral<"Error">, z.ZodLiteral<"Other">]>;
|
|
3884
3884
|
AdditionalData: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3885
3885
|
List: z.ZodString;
|
|
3886
3886
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4860,7 +4860,7 @@ export declare const ResourcePermissionSchema: z.ZodObject<{
|
|
|
4860
4860
|
PermissionLevel: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodLiteral<"View">, z.ZodLiteral<"Edit">, z.ZodLiteral<"Owner">]>>>;
|
|
4861
4861
|
__mj_CreatedAt: z.ZodDate;
|
|
4862
4862
|
__mj_UpdatedAt: z.ZodDate;
|
|
4863
|
-
Status: z.ZodUnion<[z.ZodLiteral<"
|
|
4863
|
+
Status: z.ZodUnion<[z.ZodLiteral<"Requested">, z.ZodLiteral<"Approved">, z.ZodLiteral<"Rejected">, z.ZodLiteral<"Revoked">]>;
|
|
4864
4864
|
ResourceType: z.ZodString;
|
|
4865
4865
|
Role: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4866
4866
|
User: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4868,7 +4868,7 @@ export declare const ResourcePermissionSchema: z.ZodObject<{
|
|
|
4868
4868
|
ID?: string;
|
|
4869
4869
|
__mj_CreatedAt?: Date;
|
|
4870
4870
|
__mj_UpdatedAt?: Date;
|
|
4871
|
-
Status?: "Approved" | "Rejected" | "
|
|
4871
|
+
Status?: "Approved" | "Rejected" | "Requested" | "Revoked";
|
|
4872
4872
|
UserID?: string;
|
|
4873
4873
|
User?: string;
|
|
4874
4874
|
Type?: "User" | "Role";
|
|
@@ -4884,7 +4884,7 @@ export declare const ResourcePermissionSchema: z.ZodObject<{
|
|
|
4884
4884
|
ID?: string;
|
|
4885
4885
|
__mj_CreatedAt?: Date;
|
|
4886
4886
|
__mj_UpdatedAt?: Date;
|
|
4887
|
-
Status?: "Approved" | "Rejected" | "
|
|
4887
|
+
Status?: "Approved" | "Rejected" | "Requested" | "Revoked";
|
|
4888
4888
|
UserID?: string;
|
|
4889
4889
|
User?: string;
|
|
4890
4890
|
Type?: "User" | "Role";
|
|
@@ -9762,14 +9762,14 @@ export declare class CompanyIntegrationRunEntity extends BaseEntity<CompanyInteg
|
|
|
9762
9762
|
* * Default Value: Pending
|
|
9763
9763
|
* * Value List Type: List
|
|
9764
9764
|
* * Possible Values
|
|
9765
|
+
* * Pending
|
|
9765
9766
|
* * In Progress
|
|
9766
9767
|
* * Success
|
|
9767
|
-
* * Pending
|
|
9768
9768
|
* * Failed
|
|
9769
9769
|
* * Description: Status of the integration run. Possible values: Pending, In Progress, Success, Failed.
|
|
9770
9770
|
*/
|
|
9771
|
-
get Status(): '
|
|
9772
|
-
set Status(value: '
|
|
9771
|
+
get Status(): 'Pending' | 'In Progress' | 'Success' | 'Failed';
|
|
9772
|
+
set Status(value: 'Pending' | 'In Progress' | 'Success' | 'Failed');
|
|
9773
9773
|
/**
|
|
9774
9774
|
* * Field Name: ErrorLog
|
|
9775
9775
|
* * Display Name: Error Log
|
|
@@ -16719,17 +16719,17 @@ export declare class ListDetailEntity extends BaseEntity<ListDetailEntityType> {
|
|
|
16719
16719
|
* * Default Value: Pending
|
|
16720
16720
|
* * Value List Type: List
|
|
16721
16721
|
* * Possible Values
|
|
16722
|
-
* * Pending
|
|
16723
16722
|
* * Active
|
|
16724
|
-
* * Disabled
|
|
16725
16723
|
* * Rejected
|
|
16724
|
+
* * Disabled
|
|
16726
16725
|
* * Complete
|
|
16726
|
+
* * Pending
|
|
16727
16727
|
* * Error
|
|
16728
16728
|
* * Other
|
|
16729
16729
|
* * Description: Tracks the status of each individual list detail row to enable processing of various types and the use of the status column for filtering list detail rows within a list that are in a particular state.
|
|
16730
16730
|
*/
|
|
16731
|
-
get Status(): '
|
|
16732
|
-
set Status(value: '
|
|
16731
|
+
get Status(): 'Active' | 'Rejected' | 'Disabled' | 'Complete' | 'Pending' | 'Error' | 'Other';
|
|
16732
|
+
set Status(value: 'Active' | 'Rejected' | 'Disabled' | 'Complete' | 'Pending' | 'Error' | 'Other');
|
|
16733
16733
|
/**
|
|
16734
16734
|
* * Field Name: AdditionalData
|
|
16735
16735
|
* * Display Name: Additional Data
|
|
@@ -19486,14 +19486,14 @@ export declare class ResourcePermissionEntity extends BaseEntity<ResourcePermiss
|
|
|
19486
19486
|
* * Default Value: Requested
|
|
19487
19487
|
* * Value List Type: List
|
|
19488
19488
|
* * Possible Values
|
|
19489
|
+
* * Requested
|
|
19489
19490
|
* * Approved
|
|
19490
19491
|
* * Rejected
|
|
19491
19492
|
* * Revoked
|
|
19492
|
-
*
|
|
19493
|
-
* * Description: Status of the resource permission request. Possible values are Pending, Approved, Rejected, Revoked, or Requested.
|
|
19493
|
+
* * Description: Status of the resource permission request. Possible values are Requested, Approved, Rejected, or Revoked.
|
|
19494
19494
|
*/
|
|
19495
|
-
get Status(): '
|
|
19496
|
-
set Status(value: '
|
|
19495
|
+
get Status(): 'Requested' | 'Approved' | 'Rejected' | 'Revoked';
|
|
19496
|
+
set Status(value: 'Requested' | 'Approved' | 'Rejected' | 'Revoked');
|
|
19497
19497
|
/**
|
|
19498
19498
|
* * Field Name: ResourceType
|
|
19499
19499
|
* * Display Name: Resource Type
|